Fix lint issue
This commit is contained in:
Родитель
6a38a7b70c
Коммит
6303056f64
|
@ -40,7 +40,7 @@ function odataUrlFactory(params) {
|
|||
<% } -%>
|
||||
|
||||
const searchString = composeSearchString(variables, edmEntity);
|
||||
return ${edmEntity.path}${searchString};
|
||||
return `${edmEntity.path}${searchString}`;
|
||||
}
|
||||
|
||||
function odataHeaderFactory(params) {
|
||||
|
|
|
@ -31,7 +31,7 @@ function odataUrlFactory(params) {
|
|||
<% for (const descriptor of descriptorList) { -%>
|
||||
<%- descriptor %>,
|
||||
<% } -%>
|
||||
} = descriptor;
|
||||
} = descriptor;
|
||||
|
||||
const edmEntity = edm
|
||||
<% for (const s of odataUriSegments) { -%>
|
||||
|
@ -39,7 +39,7 @@ function odataUrlFactory(params) {
|
|||
<% } -%>
|
||||
|
||||
const searchString = composeSearchString(variables, edmEntity);
|
||||
return ${edmEntity.path}${searchString};
|
||||
return `${edmEntity.path}${searchString}`;
|
||||
}
|
||||
|
||||
function odataHeaderFactory(params) {
|
||||
|
@ -78,4 +78,3 @@ export const refetchSpec = createSpec(
|
|||
null,
|
||||
environmentLookupFn,
|
||||
);
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ function odataUrlFactory(params) {
|
|||
<% } -%>
|
||||
|
||||
const searchString = composeSearchString(variables, edmEntity);
|
||||
return ${edmEntity.path}${searchString};
|
||||
return `${edmEntity.path}${searchString}`;
|
||||
}
|
||||
|
||||
function odataHeaderFactory(params) {
|
||||
|
|
|
@ -40,7 +40,7 @@ function odataUrlFactory(params) {
|
|||
<% } -%>
|
||||
|
||||
const searchString = composeSearchString(variables, edmEntity);
|
||||
return ${edmEntity.path}${searchString};
|
||||
return `${edmEntity.path}${searchString}`;
|
||||
}
|
||||
|
||||
function odataHeaderFactory(params) {
|
||||
|
|
|
@ -40,7 +40,7 @@ function odataUrlFactory(params) {
|
|||
<% } -%>
|
||||
|
||||
const searchString = composeSearchString(variables, edmEntity);
|
||||
return ${edmEntity.path}${searchString}
|
||||
return `${edmEntity.path}${searchString}`;
|
||||
}
|
||||
|
||||
function odataHeaderFactory(params) {
|
||||
|
@ -78,4 +78,4 @@ export const refetchSpec = createSpec(
|
|||
specTypes.REFETCH,
|
||||
null,
|
||||
environmentLookupFn,
|
||||
);
|
||||
);
|
||||
|
|
|
@ -40,7 +40,7 @@ function odataUrlFactory(params) {
|
|||
<% } -%>
|
||||
|
||||
const searchString = composeSearchString(variables, edmEntity);
|
||||
return ${edmEntity.path}${searchString}
|
||||
return `${edmEntity.path}${searchString}`;
|
||||
}
|
||||
|
||||
function odataHeaderFactory(params) {
|
||||
|
|
|
@ -40,7 +40,7 @@ function odataUrlFactory(params) {
|
|||
<% } -%>
|
||||
|
||||
const searchString = composeSearchString(variables, edmEntity);
|
||||
return ${edmEntity.path}${searchString}
|
||||
return `${edmEntity.path}${searchString}`;
|
||||
}
|
||||
|
||||
function odataHeaderFactory(params) {
|
||||
|
|
|
@ -40,7 +40,7 @@ function odataUrlFactory(params) {
|
|||
<% } -%>
|
||||
|
||||
const searchString = composeSearchString(variables, edmEntity);
|
||||
return ${edmEntity.path}${searchString}
|
||||
return `${edmEntity.path}${searchString}`;
|
||||
}
|
||||
|
||||
function odataHeaderFactory(params) {
|
||||
|
|
|
@ -32,7 +32,7 @@ function odataUrlFactory(params) {
|
|||
<% for (const descriptor of descriptorList) { -%>
|
||||
<%- descriptor %>,
|
||||
<% } -%>
|
||||
} = descriptor;;
|
||||
} = descriptor;
|
||||
|
||||
const edmEntity = edm
|
||||
<% for (const s of odataUriSegments) { -%>
|
||||
|
@ -40,7 +40,7 @@ function odataUrlFactory(params) {
|
|||
<% } -%>
|
||||
|
||||
const searchString = composeSearchString(variables, edmEntity);
|
||||
return ${edmEntity.path}${searchString}
|
||||
return `${edmEntity.path}${searchString}`;
|
||||
}
|
||||
|
||||
function odataHeaderFactory(params) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче