This commit is contained in:
Kerwin Bryant 2025-01-13 05:55:23 +00:00
parent cac5f1cbf3
commit dc63b48493
3 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ type Item = {
name: string; name: string;
path: string; path: string;
htmlUrl: string; htmlUrl: string;
isFile: boolean; type: string;
children?: Item[]; children?: Item[];
}; };
@ -44,7 +44,7 @@ const doLoadFileContent = () => {
<template> <template>
<!--title instead of tooltip above as the tooltip needs too much work with the current methods, i.e. not being loaded or staying open for "too long"--> <!--title instead of tooltip above as the tooltip needs too much work with the current methods, i.e. not being loaded or staying open for "too long"-->
<div <div
v-if="item.isFile" class="item-file" v-if="item.type !== 'tree'" class="item-file"
:class="{'selected': selectedItem.value === item.path}" :class="{'selected': selectedItem.value === item.path}"
:title="item.name" :title="item.name"
@click.stop="doLoadFileContent" @click.stop="doLoadFileContent"

View File

@ -162,7 +162,7 @@ export function initTargetButtons(target: ParentNode): void {
// There are many "cancel button" elements in modal dialogs, Fomantic UI expects they are button-like elements but never submit a form. // There are many "cancel button" elements in modal dialogs, Fomantic UI expects they are button-like elements but never submit a form.
// However, Gitea misuses the modal dialog and put the cancel buttons inside forms, so we must prevent the form submission. // However, Gitea misuses the modal dialog and put the cancel buttons inside forms, so we must prevent the form submission.
// There are a few cancel buttons in non-modal forms, and there are some dynamically created forms (eg: the "Edit Issue Content") // There are a few cancel buttons in non-modal forms, and there are some dynamically created forms (eg: the "Edit Issue Content")
addDelegatedEventListener(target, 'click', 'form button.ui.cancel.button', (_ /* el */, e) => e.preventDefault()); queryElems(target, 'form button.ui.cancel.button', (el) => el.addEventListener('click', (e) => e.preventDefault()));
queryElems(target, '.show-panel', (el) => el.addEventListener('click', onShowPanelClick)); queryElems(target, '.show-panel', (el) => el.addEventListener('click', onShowPanelClick));
queryElems(target, '.hide-panel', (el) => el.addEventListener('click', onHidePanelClick)); queryElems(target, '.hide-panel', (el) => el.addEventListener('click', onHidePanelClick));

View File

@ -37,7 +37,7 @@ async function loadChildren(item, recursive?: boolean) {
if (json instanceof Array) { if (json instanceof Array) {
return json.map((i) => ({ return json.map((i) => ({
name: i.name, name: i.name,
isFile: i.isFile, type: i.type,
path: i.path, path: i.path,
children: i.children, children: i.children,
})); }));