Merge branch 'release' of github.com:appsmithorg/appsmith into releasev1.6.17
This commit is contained in:
commit
c3fdeb884e
|
|
@ -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']"
|
||||
|
||||
|
|
|
|||
|
|
@ -418,7 +418,7 @@ function CircularProgress(props: ProgressComponentProps) {
|
|||
x={VIEWBOX_CENTER_X}
|
||||
y={VIEWBOX_CENTER_Y}
|
||||
>
|
||||
{`${(value / MAX_VALUE) * 100}%`}
|
||||
{`${value}%`}
|
||||
</Label>
|
||||
)}
|
||||
</>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user