Update copy and use svg for ellipsis

This commit is contained in:
Michael Telatynski 2020-09-09 12:50:48 +01:00
parent b635598bc3
commit 8d66dce68d
5 changed files with 30 additions and 7 deletions

View file

@ -158,7 +158,7 @@ const AppsSection: React.FC<IAppsSectionProps> = ({ room }) => {
}) }
<AccessibleButton kind="link" onClick={onManageIntegrations}>
{ apps.length > 0 ? _t("Edit apps") : _t("Add apps") }
{ apps.length > 0 ? _t("Edit apps, bridges & bots") : _t("Add apps, bridges & bots") }
</AccessibleButton>
</Group>;
};

View file

@ -167,14 +167,12 @@ const WidgetCard: React.FC<IProps> = ({ room, widgetId, onClose }) => {
{ pinButton }
<ContextMenuButton
kind="secondary"
className={""}
className="mx_WidgetCard_optionsButton"
inputRef={handle}
onClick={openMenu}
isExpanded={menuDisplayed}
label={_t("Options")}
>
...
</ContextMenuButton>
/>
{ contextMenu }
</React.Fragment>;