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
This commit is contained in:
Nekromateion
2024-05-29 00:58:18 +02:00
committed by GitHub
parent 39b398abdb
commit 1810171241

View File

@@ -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)")