chore(client/search): fix improper nesting

This commit is contained in:
Elian Doran 2025-09-23 20:33:43 +03:00
parent aeb9bfc1fd
commit fae66e555e
No known key found for this signature in database

View File

@ -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;