Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Mikhail Petrov <mike@nspcc.ru>
  • Loading branch information
mike-petrov committed Dec 5, 2024
1 parent 38d5642 commit 95adae8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ label.panel-block:hover {
}

.filter_item .control.select_wrapper {
max-width: 50px;
max-width: 100px;
margin: 0 12px;
}

Expand Down
11 changes: 4 additions & 7 deletions src/Components/ContainerItem/ContainerItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ export default function ContainerItem({
width={18}
alt="info"
/>
<div className="tooltip">Flexible search allows you to use any attributes to search through the attribute-operation-value formula, you can use parameters such as FilePath, FileName, etc.</div>
<div className="tooltip">Flexible search allows you to use any attributes to search through the attribute-operation-value formula, you can use attributes such as FilePath, FileName, etc.</div>
</div>
</span>
<Button
Expand Down Expand Up @@ -383,12 +383,9 @@ export default function ContainerItem({
disabled={isLoadingObjects}
>
{[
{ value: 'MatchStringEqual', title: '=' },
{ value: 'MatchStringNotEqual', title: '≠' },
{ value: 'MatchNumGT', title: '>' },
{ value: 'MatchNumGE', title: '≥' },
{ value: 'MatchNumLT', title: '<' },
{ value: 'MatchNumLE', title: '≤' },
{ value: 'MatchStringEqual', title: 'equal' },
{ value: 'MatchStringNotEqual', title: 'not equal' },
{ value: 'MatchCommonPrefix', title: 'has prefix' },
].map((item) => (
<option value={item.value} key={item.title}>{item.title}</option>
))}
Expand Down

0 comments on commit 95adae8

Please sign in to comment.