Fix for deleted groups

This commit is contained in:
Natsumi
2023-06-04 13:01:44 +12:00
parent 7e17af8c7a
commit f2c7275000
3 changed files with 8 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ mixin notificationsTab()
template(#content)
location(v-if="scope.row.details" :location="scope.row.details.worldId" :hint="scope.row.details.worldName" :grouphint="scope.row.details.groupName" :link="false")
span.x-link(v-text="scope.row.type" @click="showWorldDialog(scope.row.details.worldId)")
el-tooltip(v-if="scope.row.type === 'group.queueReady'" placement="top")
el-tooltip(v-else-if="scope.row.type === 'group.queueReady'" placement="top")
template(#content)
location(v-if="scope.row.location" :location="scope.row.location" :hint="scope.row.worldName" :grouphint="scope.row.groupName" :link="false")
span.x-link(v-text="scope.row.type" @click="showWorldDialog(scope.row.location)")