File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,14 +37,15 @@ import LeftSidebar from './components/LeftSidebar/LeftSidebar.vue'
3737import RightSidebar from ' ./components/RightSidebar/RightSidebar.vue'
3838import DefaultPageError from ' ./views/DefaultPageError.vue'
3939
40+ import { initialActionCode , ACTION_CODES } from ' ./helpers/ActionMapping'
4041import LogoLibreSign from ' ../img/logo-gray.svg'
4142
4243const route = useRoute ()
4344const loading = ref (false )
4445
4546const isRoot = computed (() => route .path === ' /' )
4647const isSignExternalPage = computed (() => route .path .startsWith (' /p/' ))
47- const isDoNothingError = computed (() => ( route . params ?. action as number | undefined ) === 2000 )
48+ const isDoNothingError = computed (() => initialActionCode . value === ACTION_CODES . DO_NOTHING )
4849const showLeftSidebar = computed (() => ! route .matched .some (record => record .meta ?.hideLeftSidebar === true ))
4950 </script >
5051
You can’t perform that action at this time.
0 commit comments