Merge branch 'release' of github.com:appsmithorg/appsmith into releasev1.6.17

This commit is contained in:
arunvjn 2022-04-07 15:43:29 +05:30
commit c3fdeb884e
2 changed files with 2 additions and 2 deletions

View File

@ -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']"

View File

@ -418,7 +418,7 @@ function CircularProgress(props: ProgressComponentProps) {
x={VIEWBOX_CENTER_X}
y={VIEWBOX_CENTER_Y}
>
{`${(value / MAX_VALUE) * 100}%`}
{`${value}%`}
</Label>
)}
</>