chore: Rename tooltip.tooltip prop to tooltip.content
This commit is contained in:
@@ -98,7 +98,7 @@ function DomainManagement({ onSuccess }: Props) {
|
||||
onChange={createOnDomainChangedHandler(index)}
|
||||
/>
|
||||
<Remove>
|
||||
<Tooltip tooltip={t("Remove domain")} placement="top">
|
||||
<Tooltip content={t("Remove domain")} placement="top">
|
||||
<NudeButton onClick={() => handleRemoveDomain(index)}>
|
||||
<CloseIcon />
|
||||
</NudeButton>
|
||||
|
||||
@@ -70,7 +70,7 @@ function SharesTable({ canManage, data, ...rest }: Props) {
|
||||
Cell: observer(({ value }: { value: string }) =>
|
||||
value ? (
|
||||
<Flex align="center">
|
||||
<Tooltip tooltip={t("Nested documents are publicly available")}>
|
||||
<Tooltip content={t("Nested documents are publicly available")}>
|
||||
<CheckmarkIcon color={theme.accent} />
|
||||
</Tooltip>
|
||||
</Flex>
|
||||
|
||||
Reference in New Issue
Block a user