fix: updated app name in workspace and desktop

This commit is contained in:
Jannat Patel
2026-02-23 12:35:13 +05:30
parent b77c4867e1
commit 90151be166
4 changed files with 11 additions and 10 deletions

View File

@@ -783,11 +783,11 @@ const isAdmin = computed(() => {
const allowEdit = () => {
if (window.read_only_mode) return false
if (isAdmin.value) return true
return false
return isAdmin.value
}
const allowInstructorContent = () => {
if (window.read_only_mode) return false
return isAdmin.value
}