chore: generate
This commit is contained in:
parent
d595c7e265
commit
49028b6245
7 changed files with 11 additions and 18 deletions
|
|
@ -116,9 +116,7 @@ const FileTreeNodeV2 = (
|
|||
function GuideLines(props: { level: number }) {
|
||||
return (
|
||||
<For each={Array.from({ length: props.level })}>
|
||||
{(_, index) => (
|
||||
<div data-slot="file-tree-v2-guide" style={`left: ${guideLineLeft(index())}px`} />
|
||||
)}
|
||||
{(_, index) => <div data-slot="file-tree-v2-guide" style={`left: ${guideLineLeft(index())}px`} />}
|
||||
</For>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -15,10 +15,7 @@ export function OpenInAppV2(props: { directory: () => string }) {
|
|||
|
||||
return (
|
||||
<Show when={props.directory() && state.canOpen()}>
|
||||
<SplitButtonV2
|
||||
class="session-review-v2-open-in-app"
|
||||
onPointerDown={(event) => event.stopPropagation()}
|
||||
>
|
||||
<SplitButtonV2 class="session-review-v2-open-in-app" onPointerDown={(event) => event.stopPropagation()}>
|
||||
<TooltipV2
|
||||
placement="bottom"
|
||||
value={language.t("session.header.open.ariaLabel", { app: state.current().label })}
|
||||
|
|
|
|||
|
|
@ -163,10 +163,7 @@ export function useOpenInApp(input: { directory: () => string }) {
|
|||
] as const
|
||||
})
|
||||
|
||||
const [prefs, setPrefs] = persisted(
|
||||
Persist.global("open.app"),
|
||||
createStore({ app: "finder" as OpenApp | "finder" }),
|
||||
)
|
||||
const [prefs, setPrefs] = persisted(Persist.global("open.app"), createStore({ app: "finder" as OpenApp | "finder" }))
|
||||
const [menu, setMenu] = createStore({ open: false })
|
||||
const [openRequest, setOpenRequest] = createStore({
|
||||
app: undefined as OpenApp | undefined,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue