@webitel/ui-sdk 26.2.95 → 26.2.96

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "26.2.95",
3
+ "version": "26.2.96",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run biome:format:all || true) && npm run publish-lib",
@@ -162,7 +162,11 @@ const {
162
162
  initialize();
163
163
 
164
164
  const initializeDefaultFilters = () => {
165
- if (props.entityIdKey && props.entityIdValue) {
165
+ if (
166
+ props.entityIdKey &&
167
+ props.entityIdValue &&
168
+ !hasFilter(props.entityIdKey)
169
+ ) {
166
170
  addFilter({
167
171
  name: props.entityIdKey,
168
172
  value: props.entityIdValue,