Change delete icon in tables

This commit is contained in:
Natsumi
2024-10-09 18:24:14 +13:00
parent d16d8399ca
commit d45a2607e7
3 changed files with 14 additions and 10 deletions

View File

@@ -11126,25 +11126,29 @@ speechSynthesis.getVoices();
this.addGameLogEntry(gameLog, this.lastLocation.location);
};
$app.methods.deleteGameLogEntry = function (row) {
$app.methods.deleteGameLogEntryPrompt = function (row) {
this.$confirm('Continue? Delete Log', 'Confirm', {
confirmButtonText: 'Confirm',
cancelButtonText: 'Cancel',
type: 'info',
callback: (action) => {
if (action === 'confirm') {
removeFromArray(this.gameLogTable.data, row);
database.deleteGameLogEntry(row);
console.log(row);
database.getGamelogDatabase().then((data) => {
this.gameLogSessionTable = data;
this.updateSharedFeed(true);
});
this.deleteGameLogEntry(row);
}
}
});
};
$app.methods.deleteGameLogEntry = function (row) {
removeFromArray(this.gameLogTable.data, row);
database.deleteGameLogEntry(row);
console.log(row);
database.getGamelogDatabase().then((data) => {
this.gameLogSessionTable = data;
this.updateSharedFeed(true);
});
};
$app.data.lastLocationDestination = '';
$app.data.lastLocationDestinationTime = 0;
$app.data.lastVideoUrl = '';