fix(sh-admin): resolved issue while rendering images (#4221)

Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
Joel Jacob Stephen
2024-07-29 20:29:02 +03:00
committed by GitHub
parent e26528cedf
commit 2a37235229
4 changed files with 2 additions and 4 deletions

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@@ -242,7 +242,7 @@ const emit = defineEmits<{
const addGroupImagePath = `${
import.meta.env.VITE_ADMIN_URL
}/assets/images/add_group.svg`;
}/images/add_group.svg`;
// Get Users List to extract email ids of all users
const { data } = useQuery({ query: MetricsDocument });

View File

@@ -106,9 +106,7 @@ const emit = defineEmits<{
): void;
}>();
const noTokensImage = `${
import.meta.env.VITE_ADMIN_URL
}/assets/images/pack.svg`;
const noTokensImage = `${import.meta.env.VITE_ADMIN_URL}/images/pack.svg`;
const isInitialPageLoad = computed(() => props.loading && !props.hasMoreTokens);
const initialPageLoadHasError = computed(