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

View File

@@ -77,6 +77,7 @@ export default function SearchDefinitionTab({ note, ntxId }: TabContext) {
<div className="search-settings">
{note &&
<table className="search-setting-table">
<tbody>
<tr>
<td className="title-column">{t("search_definition.add_search_option")}</td>
<td colSpan={2} className="add-search-option">
@@ -93,6 +94,7 @@ export default function SearchDefinitionTab({ note, ntxId }: TabContext) {
<AddBulkActionButton note={note} />
</td>
</tr>
</tbody>
<tbody className="search-options">
{searchOptions?.activeOptions.map(({ attributeType, attributeName, component, additionalAttributesToDelete, defaultValue }) => {
const Component = component;