From 18101712414868589bc8c730fd9dfd862f5706ee Mon Sep 17 00:00:00 2001 From: Nekromateion <43814053+Nekromateion@users.noreply.github.com> Date: Wed, 29 May 2024 00:58:18 +0200 Subject: [PATCH] Add "Previous Instance Info" button to game log (#803) * Add "Previous Instance Info" button to game log Closes #800 * Add tooltip to open Instance info button in game log --- html/src/mixins/tabs/gameLog.pug | 2 ++ 1 file changed, 2 insertions(+) diff --git a/html/src/mixins/tabs/gameLog.pug b/html/src/mixins/tabs/gameLog.pug index e341f3a7..9390a9e4 100644 --- a/html/src/mixins/tabs/gameLog.pug +++ b/html/src/mixins/tabs/gameLog.pug @@ -50,3 +50,5 @@ mixin gameLogTab() el-table-column(:label="$t('table.gameLog.action')" width="80" align="right") template(v-once #default="scope") el-button(v-if="scope.row.type !== 'OnPlayerJoined' && scope.row.type !== 'OnPlayerLeft' && scope.row.type !== 'Location' && scope.row.type !== 'PortalSpawn'" type="text" icon="el-icon-close" size="mini" @click="deleteGameLogEntry(scope.row)") + el-tooltip(placement="top" content="Open Instance Info" :disabled="hideTooltips") + el-button(v-if="scope.row.type === 'Location'" type="text" icon="el-icon-tickets" size="mini" @click="showPreviousInstanceInfoDialog(scope.row.location)")