Add tooltip to explain why URL cannot be changed until unpublishing

This commit is contained in:
Andrew Kingston 2022-12-20 08:53:12 +00:00
parent b5e3505f55
commit a3a0d3e9e0
1 changed files with 4 additions and 0 deletions

View File

@ -55,6 +55,10 @@
updatingModal.show() updatingModal.show()
}} }}
disabled={appDeployed} disabled={appDeployed}
tooltip={appDeployed
? "You must unpublish your app to make changes to these settings"
: null}
icon={appDeployed ? "HelpOutline" : null}
> >
Edit Edit
</Button> </Button>