fixed lint warnings
This commit is contained in:
parent
a9f6b15d3a
commit
559996be4a
@ -61,8 +61,8 @@ function setValueFromTPS(
|
|||||||
if (param.startsWith("tps:")) {
|
if (param.startsWith("tps:")) {
|
||||||
const tpsProperty = param.substring(4, param.length);
|
const tpsProperty = param.substring(4, param.length);
|
||||||
getTenantProperty(tpsProperty, props)
|
getTenantProperty(tpsProperty, props)
|
||||||
.then((value: string) => {
|
.then((value: unknown) => {
|
||||||
reference.value = value;
|
reference.value = value as string;
|
||||||
})
|
})
|
||||||
.catch((err: Error) => {
|
.catch((err: Error) => {
|
||||||
errorMessage.value = `${err.message} for TPS property ${tpsProperty}`;
|
errorMessage.value = `${err.message} for TPS property ${tpsProperty}`;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user