mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
update: disable cancel on creation.
This commit is contained in:
+2
-2
@@ -353,7 +353,7 @@
|
||||
<Button
|
||||
text
|
||||
size="s"
|
||||
disabled={loadingSuggestions}
|
||||
disabled={loadingSuggestions || creatingIndexes}
|
||||
on:click={() => {
|
||||
if (indexes.length > 0 && !creatingIndexes) {
|
||||
confirmDismiss = true;
|
||||
@@ -388,7 +388,7 @@
|
||||
onClick: async () => await applySuggestedIndexes()
|
||||
}}
|
||||
cancel={{
|
||||
disabled: loadingSuggestions,
|
||||
disabled: loadingSuggestions || creatingIndexes,
|
||||
onClick: () => {
|
||||
if (indexes.length > 0 && !creatingIndexes) {
|
||||
confirmDismiss = true;
|
||||
|
||||
Reference in New Issue
Block a user