-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MI-2085]: No projects linked handling on modals and refactor create-… #54
Conversation
…re-devops into MI-1987_1
…n with other changes
…and a centralised check for root modals
…azure-devops into MI-2085
subTitle={{text: 'Create a subscription by clicking the button below'}} | ||
buttonText='Create new subscription' | ||
title='No subscriptions yet' | ||
subTitle={{text: 'You can link a subscription by clicking the below button.'}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
subTitle={{text: 'You can link a subscription by clicking the below button.'}} | |
subTitle={{text: 'You can create a subscription by clicking the below button.'}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, sounds good, however link
is mentioned in Figma
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add
sounds more appropriate as per Figma
…re-devops into MI-2085
@@ -215,7 +215,7 @@ func (c *client) call(basePath, method, path, contentType string, mattermostUser | |||
req.Header.Add("Content-Type", contentType) | |||
} | |||
|
|||
if isAccessTokenExpired, refreshToken := c.plugin.isAccessTokenExpired(mattermostUserID); isAccessTokenExpired { | |||
if IsAccessTokenExpired, refreshToken := c.plugin.IsAccessTokenExpired(mattermostUserID); IsAccessTokenExpired { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if IsAccessTokenExpired, refreshToken := c.plugin.IsAccessTokenExpired(mattermostUserID); IsAccessTokenExpired { | |
if isAccessTokenExpired, refreshToken := c.plugin.IsAccessTokenExpired(mattermostUserID); isAccessTokenExpired { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is already fixed
these changes are synced with master where all the changes are already reviewed (1st and 2nd pass) for this PR the changes are too small for 2nd pass |
No projects linked handling on modals and refactor create-task-modal