mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
Allow serving of interactive CSVs directly to Handy (#3756)
* allow direct serve interactive CSVs to Handy --------- Co-authored-by: kermieisinthehouse <kermie@isinthe.house>
This commit is contained in:
@@ -762,6 +762,14 @@ export const SettingsInterfacePanel: React.FC = () => {
|
||||
value={iface.funscriptOffset ?? undefined}
|
||||
onChange={(v) => saveInterface({ funscriptOffset: v })}
|
||||
/>
|
||||
|
||||
<BooleanSetting
|
||||
id="use-stash-hosted-funscript"
|
||||
headingID="config.ui.use_stash_hosted_funscript.heading"
|
||||
subHeadingID="config.ui.use_stash_hosted_funscript.description"
|
||||
checked={iface.useStashHostedFunscript ?? false}
|
||||
onChange={(v) => saveInterface({ useStashHostedFunscript: v })}
|
||||
/>
|
||||
</SettingSection>
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user