File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 11<script setup lang="ts">
2- onMounted (() => {
2+ onMounted (async () => {
3+ if (! isDevAuthed .value ) {
4+ if (devAuthToken .value ) {
5+ const result = await rpc .verifyAuthToken (devAuthToken .value )
6+ if (result )
7+ isDevAuthed .value = true
8+ }
9+ }
310 if (! isDevAuthed .value )
411 rpc .requestForAuth ()
512})
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ registerCommands(() => [
6262 </script >
6363
6464<template >
65- <PanelLeftRight :left-size =" 20 " >
65+ <PanelLeftRight :left-size =" 30 " >
6666 <template #left >
6767 <div flex =" ~ col" >
6868 <template v-for =" build of info ?.builds " :key =" build .slug " >
@@ -72,7 +72,7 @@ registerCommands(() => [
7272 :to =" `?slug=${encodeURIComponent(build.slug)}`"
7373 >
7474 <code >{{ build.name }}</code >
75- <div flex =" ~ gap-1 items-center" text-sm op60 >
75+ <div flex =" ~ gap-1 items-center wrap " text-sm op60 >
7676 <div i-carbon-time />
7777 <span >{{ formatDuration(build) }}</span >
7878 <div flex-auto />
@@ -81,7 +81,7 @@ registerCommands(() => [
8181 </NuxtLink >
8282 <div x-divider />
8383 </template >
84- <div flex =" ~ items-center justify-center" p4 >
84+ <div flex =" ~ items-center justify-center wrap " p4 >
8585 <NButton v-if =" !processAnalyzeBuildInfo" n =" primary" icon =" carbon-edge-node" @click =" start()" >
8686 Start a new build
8787 </NButton >
You can’t perform that action at this time.
0 commit comments