diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
index f03895662..4355fcca1 100644
--- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
+++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.html
@@ -49,7 +49,7 @@
}
@if (editing) {
- @if (filteredItems.length === 0 && createRef !== undefined) {
+ @if (filteredItems.length === 0 && createRef !== undefined && filterText?.length > 0) {
}
}
- @if (extraButtonTitle) {
+ @if (extraButtonTitle && (showExtraButtonIfEmpty || filteredItems?.length > 0)) {