Skip to content

Commit

Permalink
fix(entities): create button visibility (#1509)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leopoldthecoder authored Jul 24, 2024
1 parent 4b42a0a commit d6ff0e4
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ const confirmDelete = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ const confirmDelete = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ const confirmDelete = async (): Promise<void> => {
}
// Remount the table when hasData changes
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ const exitGroups = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ const removeConsumers = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ const deleteRow = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ const confirmDelete = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
2 changes: 1 addition & 1 deletion packages/entities/entities-keys/src/components/KeyList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ const confirmDelete = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ const confirmDelete = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ const confirmDelete = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
2 changes: 1 addition & 1 deletion packages/entities/entities-snis/src/components/SniList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ const confirmDelete = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ const confirmDelete = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ const confirmDelete = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ const confirmDelete = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ const confirmDelete = async (): Promise<void> => {
}
}
const hasData = ref(true)
const hasData = ref(false)
/**
* Watchers
Expand Down

0 comments on commit d6ff0e4

Please sign in to comment.