mirror of
https://github.com/zadam/trilium.git
synced 2025-12-04 22:44:25 +01:00
chore(client/search): fix improper nesting
This commit is contained in:
parent
aeb9bfc1fd
commit
fae66e555e
@ -77,22 +77,24 @@ export default function SearchDefinitionTab({ note, ntxId }: TabContext) {
|
|||||||
<div className="search-settings">
|
<div className="search-settings">
|
||||||
{note &&
|
{note &&
|
||||||
<table className="search-setting-table">
|
<table className="search-setting-table">
|
||||||
<tr>
|
<tbody>
|
||||||
<td className="title-column">{t("search_definition.add_search_option")}</td>
|
<tr>
|
||||||
<td colSpan={2} className="add-search-option">
|
<td className="title-column">{t("search_definition.add_search_option")}</td>
|
||||||
{searchOptions?.availableOptions.map(({ icon, label, tooltip, attributeName, attributeType, defaultValue }) => (
|
<td colSpan={2} className="add-search-option">
|
||||||
<Button
|
{searchOptions?.availableOptions.map(({ icon, label, tooltip, attributeName, attributeType, defaultValue }) => (
|
||||||
size="small"
|
<Button
|
||||||
icon={icon}
|
size="small"
|
||||||
text={label}
|
icon={icon}
|
||||||
title={tooltip}
|
text={label}
|
||||||
onClick={() => attributes.setAttribute(note, attributeType, attributeName, defaultValue ?? "")}
|
title={tooltip}
|
||||||
/>
|
onClick={() => attributes.setAttribute(note, attributeType, attributeName, defaultValue ?? "")}
|
||||||
))}
|
/>
|
||||||
|
))}
|
||||||
|
|
||||||
<AddBulkActionButton note={note} />
|
<AddBulkActionButton note={note} />
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
</tbody>
|
||||||
<tbody className="search-options">
|
<tbody className="search-options">
|
||||||
{searchOptions?.activeOptions.map(({ attributeType, attributeName, component, additionalAttributesToDelete, defaultValue }) => {
|
{searchOptions?.activeOptions.map(({ attributeType, attributeName, component, additionalAttributesToDelete, defaultValue }) => {
|
||||||
const Component = component;
|
const Component = component;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user