Merge pull request #22817 from mattermost/MM-51911-delete-workspace-button-opens-a-new-tab
MM-51911 - The Delete Workspace Button Opens the Modal in a New Tab
Этот коммит содержится в:
@@ -15,8 +15,6 @@ import {isCloudLicense} from 'utils/license_utils';
|
|||||||
|
|
||||||
import {getCloudSubscription, getSubscriptionProduct} from 'mattermost-redux/selectors/entities/cloud';
|
import {getCloudSubscription, getSubscriptionProduct} from 'mattermost-redux/selectors/entities/cloud';
|
||||||
|
|
||||||
import ExternalLink from 'components/external_link';
|
|
||||||
|
|
||||||
import DeleteWorkspaceModal from './delete_workspace_modal';
|
import DeleteWorkspaceModal from './delete_workspace_modal';
|
||||||
|
|
||||||
export default function DeleteWorkspaceCTA() {
|
export default function DeleteWorkspaceCTA() {
|
||||||
@@ -80,17 +78,15 @@ export default function DeleteWorkspaceCTA() {
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<ExternalLink
|
<button
|
||||||
href=''
|
className='btn cancelSubscriptionSection__contactUs'
|
||||||
location='delete_workspace_cta'
|
|
||||||
className='cancelSubscriptionSection__contactUs'
|
|
||||||
onClick={handleOnClickDelete}
|
onClick={handleOnClickDelete}
|
||||||
>
|
>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='admin.billing.subscription.deleteWorkspaceSection.delete'
|
id='admin.billing.subscription.deleteWorkspaceSection.delete'
|
||||||
defaultMessage='Delete Workspace'
|
defaultMessage='Delete Workspace'
|
||||||
/>
|
/>
|
||||||
</ExternalLink>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user