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