You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using strict comparability often for what screen is active throughout the moderation panel. For example v-else-if="moderationScreenStore.activeScreen === ModerationScreen.EditSubmission" in the ModTopbar.vue.
Success
The equalities are refactored into functions that make it readable. For example dashboardScreenIsActive()
Requirements
Add functions for each active screen in the moderationScreenStore.ts
Update where this is being used around the mod panel
The text was updated successfully, but these errors were encountered:
Problem
We are using strict comparability often for what screen is active throughout the moderation panel. For example
v-else-if="moderationScreenStore.activeScreen === ModerationScreen.EditSubmission"
in theModTopbar.vue
.Success
The equalities are refactored into functions that make it readable. For example
dashboardScreenIsActive()
Requirements
moderationScreenStore.ts
The text was updated successfully, but these errors were encountered: