Teams Membership Updater 1.0.8;
Fixed bug is using Done state instead of Ready on the submit button; Set background to white to avoid issues in teams dark mode; Added Logo
This commit is contained in:
parent
acb901319a
commit
ab8a441b2c
|
@ -12,7 +12,7 @@
|
|||
"websiteUrl": "https://nbdev.uk",
|
||||
"mpnId": "000000"
|
||||
},
|
||||
"version": "1.0.0.7",
|
||||
"version": "1.0.0.8",
|
||||
"includeClientSideAssets": true,
|
||||
"isDomainIsolated": false,
|
||||
"webApiPermissionRequests": [
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
|
@ -6,6 +6,7 @@
|
|||
padding: 10px;
|
||||
margin: 0px auto;
|
||||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.row {
|
||||
|
|
|
@ -344,7 +344,7 @@ export default class TeamsMembershipUpdater extends React.Component<ITeamsMember
|
|||
<Text block variant="xLarge" className={mg.title}>{strings.orphanedMembersTitle}</Text>
|
||||
{strings.orphanedMembersContent}
|
||||
</Callout>}
|
||||
<PrimaryButton text={strings.submitButton} onClick={this.onRun} allowDisabledFocus disabled={!csvdata || items.length == 0 || stage != Stage.Done || !csvSelected} />
|
||||
<PrimaryButton text={strings.submitButton} onClick={this.onRun} allowDisabledFocus disabled={!csvdata || items.length == 0 || stage != Stage.Ready || !csvSelected} />
|
||||
|
||||
<Separator>CSV Preview</Separator>
|
||||
{csvdata && <DetailsList
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 13 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.7 KiB |
Loading…
Reference in New Issue