bring back custom search engine url box - fixes #1078

we had accidentally removed the MkInput
This commit is contained in:
dakkar 2025-05-30 11:29:49 +01:00
parent 6d4860bb78
commit 988ce94b97

View file

@ -237,6 +237,13 @@ SPDX-License-Identifier: AGPL-3.0-only
<!-- If one of the other options is selected show this as a blank other --> <!-- If one of the other options is selected show this as a blank other -->
<option v-if="!useCustomSearchEngine" value="">{{ i18n.ts.searchEngineOther }}</option> <option v-if="!useCustomSearchEngine" value="">{{ i18n.ts.searchEngineOther }}</option>
</MkSelect> </MkSelect>
<div v-if="useCustomSearchEngine">
<MkInput v-model="searchEngine" :max="300" :manualSave="true">
<template #label>{{ i18n.ts.searchEngineCusomURI }}</template>
<template #caption>{{ i18n.ts.searchEngineCustomURIDescription }}</template>
</MkInput>
</div>
</MkPreferenceContainer> </MkPreferenceContainer>
</SearchMarker> </SearchMarker>