Skip to content

Commit

Permalink
fix: change share class name for adblocker chrome extension (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
stew-ro authored Aug 14, 2020
1 parent da405b3 commit aa8a73a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default class App extends React.Component<IAppProps> {
<TelemetryProvider after={() => { this.appInsights = getAppInsights() }}>
<div className={`app-shell platform-${platform}`}>
<TitleBar icon="TagGroup">
<div className="app-share-menu-icon">
<div className="project-share-menu-icon">
<ShareProjectButton />
</div>
<div className="app-shortcuts-menu-icon">
Expand Down
2 changes: 1 addition & 1 deletion src/react/components/shell/shareProjectButton.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@import '../../../assets/sass/theme.scss';

.share-button {
.project-share-button {
background-color: transparent;
height: 100%;
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion src/react/components/shell/shareProjectButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default class ShareProjectButton extends React.Component<IShareProps> {
return (
<Customizer {...dark}>
<IconButton
className="share-button"
className="project-share-button"
ariaLabel={strings.shareProject.name}
iconProps={{ iconName: "Share" }}
disabled={this.props.currentProject && this.props.currentProject.sourceConnection.providerType === "azureBlobStorage" ? false : true}
Expand Down

0 comments on commit aa8a73a

Please sign in to comment.