@kaspernj/api-maker 1.0.422 → 1.0.423
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
|
@@ -337,7 +337,7 @@ export default memo(shapeComponent(class ApiMakerTableFiltersFilterForm extends
|
|
|
337
337
|
newSearchParams.a = digg(attribute, "attributeName")
|
|
338
338
|
newSearchParams.pre = digg(predicate, "name")
|
|
339
339
|
} else if (scope) {
|
|
340
|
-
newSearchParams.sc =
|
|
340
|
+
newSearchParams.sc = scope
|
|
341
341
|
} else {
|
|
342
342
|
throw new Error("Dont know if should search for attribute or scope?")
|
|
343
343
|
}
|
|
@@ -23,10 +23,9 @@ export default memo(shapeComponent(class ScopeElement extends BaseComponent {
|
|
|
23
23
|
|
|
24
24
|
return (
|
|
25
25
|
<Pressable
|
|
26
|
-
dataSet={{class: "scope-element"}}
|
|
26
|
+
dataSet={{class: "scope-element", scopeName: scope}}
|
|
27
27
|
key={scope}
|
|
28
28
|
onPress={this.tt.onScopeClicked}
|
|
29
|
-
|
|
30
29
|
>
|
|
31
30
|
<Text style={style}>
|
|
32
31
|
{scope}
|