Skip to content

Commit

Permalink
FD-715 add wildcards to search text (#476)
Browse files Browse the repository at this point in the history
* add wildcards to search text

* fix made on different place

* formatting fix
  • Loading branch information
oskovran authored Sep 20, 2024
1 parent 1f5f08f commit adbbb36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/external-api/topology-discovery-graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ function getTopologyDiscoveryApi() {
const filter: DeviceMetadataFilters = {};

if (filters?.deviceName != null) {
filter.deviceName = filters.deviceName;
filter.deviceName = `%${filters.deviceName}%`;
}

if (filters?.topologyType != null) {
Expand Down

0 comments on commit adbbb36

Please sign in to comment.