File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ export default defineComponent({
3232 const checkLogin = async () => {
3333 if (oauthClient .isLoggedIn ) {
3434 loginText .value = " Logout" ;
35- await loadConfiguration ();
3635 await loadCurrentUser ();
3736 await loadReviewerMaterials ();
3837 if (sharedList .value .length === 0 ) {
@@ -52,7 +51,8 @@ export default defineComponent({
5251 oauthClient .redirectToLogin ();
5352 }
5453 };
55- onMounted (() => {
54+ onMounted (async () => {
55+ await loadConfiguration ();
5656 checkLogin ();
5757 });
5858 router .afterEach ((guard ) => {
Original file line number Diff line number Diff line change @@ -285,10 +285,10 @@ export default defineComponent({
285285 });
286286
287287 onMounted (async () => {
288- addSubmittedColumns ();
289- hideDetailedMetadataColumns ();
290288 await fetchRecordingTags ();
291289 await fetchRecordings ();
290+ addSubmittedColumns ();
291+ hideDetailedMetadataColumns ();
292292 });
293293
294294 const uploadDone = () => {
You can’t perform that action at this time.
0 commit comments