diff --git a/app/client/cypress/support/Pages/JSEditor.ts b/app/client/cypress/support/Pages/JSEditor.ts index b4f6df336c..24de619743 100644 --- a/app/client/cypress/support/Pages/JSEditor.ts +++ b/app/client/cypress/support/Pages/JSEditor.ts @@ -13,7 +13,7 @@ export class JSEditor { private _bindingsClose = ".t--entity-property-close" private _propertyList = ".t--entity-property" private _responseTabAction = (funName: string) => "//div[@class='function-name'][text()='" + funName + "']/following-sibling::div//*[local-name()='svg']" - private _functionSetting = (settingTxt: string) => "//span[text()='" + settingTxt + "']/parent::div/following-sibling::input[@type='checkbox']" + private _functionSetting = (settingTxt: string) => "//span[contains(text(),'" + settingTxt + "')]/parent::div/following-sibling::input[@type='checkbox']" _dialog = (dialogHeader: string) => "//div[contains(@class, 'bp3-dialog')]//h4[contains(text(), '" + dialogHeader + "')]" private _closeSettings = "span[icon='small-cross']" diff --git a/app/client/src/widgets/ProgressWidget/component/index.tsx b/app/client/src/widgets/ProgressWidget/component/index.tsx index f710d3980b..9fa56deb76 100644 --- a/app/client/src/widgets/ProgressWidget/component/index.tsx +++ b/app/client/src/widgets/ProgressWidget/component/index.tsx @@ -418,7 +418,7 @@ function CircularProgress(props: ProgressComponentProps) { x={VIEWBOX_CENTER_X} y={VIEWBOX_CENTER_Y} > - {`${(value / MAX_VALUE) * 100}%`} + {`${value}%`} )}