-
- {{ hola }}
-
{{ submission.id }}
-
- {{ submission.publications[0].authorsStringShort }}
-
-
- {{ submission.publications[0].fullTitle.en }}
-
-
-
-
- {{ submission.stageName }}
-
-
- {{
- t('common.inParenthesis', {
- text: t('common.reviewRoundNumber', {
- round:
- submission.reviewRounds[
- submission.reviewRounds.length - 1
- ].round,
- }),
- })
- }}
-
-
-
-
-
-
- View submission in detail
-
-
-
+
diff --git a/src/stores/dialogStore.js b/src/stores/dialogStore.js
index 3b8aaa605..c79dbc965 100644
--- a/src/stores/dialogStore.js
+++ b/src/stores/dialogStore.js
@@ -2,6 +2,7 @@ import {defineStore} from 'pinia';
import {ref} from 'vue';
import {t} from '@/utils/i18n';
export const useDialogStore = defineStore('dialog', () => {
+ const currentLevel = ref(0);
const dialogProps = ref({});
const dialogOpened = ref(false);
@@ -32,6 +33,7 @@ export const useDialogStore = defineStore('dialog', () => {
}
return {
+ currentLevel,
dialogProps,
dialogOpened,
openDialogNetworkError,