You've already forked AstralRinth
forked from didirus/AstralRinth
feat: frontend explicit imports + error page fix (#4184)
* feat: frontend explicit imports * fix: error handling * fix: dashboard missing import * fix: error page issues * fix: exclude RouterView * feat: fix lint issues * fix: lint issues * fix: import issues * add getVersionLink * make articles.json use tabs on generation so it doesn't have to be reformatted * fix: lint issues --------- Signed-off-by: Cal H. <hendersoncal117@gmail.com> Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com>
This commit is contained in:
@@ -151,7 +151,7 @@
|
||||
class="group"
|
||||
>
|
||||
<div class="flex items-center gap-2">
|
||||
<UiServersLogLine :log="item" @show-full-log="showFullLogMessage" />
|
||||
<LogLine :log="item" @show-full-log="showFullLogMessage" />
|
||||
<div @mousedown.stop @click.stop>
|
||||
<button
|
||||
v-if="searchInput"
|
||||
@@ -223,8 +223,8 @@
|
||||
:class="{ hidden: searchInput || hasSelection || isSingleLineSelected }"
|
||||
@click="toggleFullscreen"
|
||||
>
|
||||
<LazyUiServersIconsMinimizeIconVue v-if="isFullScreen" />
|
||||
<LazyUiServersIconsFullscreenIcon v-else />
|
||||
<MinimizeIconVue v-if="isFullScreen" />
|
||||
<FullscreenIcon v-else />
|
||||
</button>
|
||||
|
||||
<Transition name="fade">
|
||||
@@ -306,6 +306,10 @@ import { computed, nextTick, onMounted, onUnmounted, ref, watch } from 'vue'
|
||||
|
||||
import { useModrinthServersConsole } from '~/store/console.ts'
|
||||
|
||||
import FullscreenIcon from './icons/FullscreenIcon.vue'
|
||||
import MinimizeIconVue from './icons/MinimizeIcon.vue.vue'
|
||||
import LogLine from './LogLine.vue'
|
||||
|
||||
const { $cosmetics } = useNuxtApp()
|
||||
const cosmetics = $cosmetics
|
||||
|
||||
|
||||
Reference in New Issue
Block a user