-
Notifications
You must be signed in to change notification settings - Fork 174
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
Alex krasn/feature share project #344
Conversation
…into alex-krasn/feature-share-project
…into alex-krasn/feature-share-project
.ms-Icon--ChromeRestore:before { @include ms-Icon--ChromeRestore } | ||
.ms-Icon--ChromeMinimize:before { @include ms-Icon--ChromeMinimize } | ||
.ms-Icon--System:before { @include ms-Icon--System } | ||
.ms-Icon--SquareShape:before { @include ms-Icon--SquareShape } |
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.
can we append to this list instead of replacing it every time. I can't tell what's added or deleted
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.
@stew-ro I thought, you told me that we have to replace this file - when we adding icons.
@@ -15,29 +23,21 @@ | |||
"unicode": "EE69" | |||
}, | |||
{ | |||
"name": "Table", |
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.
Can we append to this instead of replacing/rearranging every time. I can't tell what's being added and deleted
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.
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 one is the same, you told me that we have to replace this file. I'll add the missing icon though. What is the name of the missing icon?
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.
fixed
src/react/components/common/cloudFilePicker/cloudFilePicker.tsx
Outdated
Show resolved
Hide resolved
src/react/components/common/cloudFilePicker/cloudFilePicker.tsx
Outdated
Show resolved
Hide resolved
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.
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.
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.
…into alex-krasn/feature-share-project
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.
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.
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.
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.
<div className={`shared-string-input-container ${this.state.selectedConnection ? "hide" : ""}`}> | ||
<div className="condensed-list-header bg-darker-2 shared-uri-header"> | ||
Shared Project String | ||
</div> |
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.
indent
src/react/components/common/cloudFilePicker/cloudFilePicker.tsx
Outdated
Show resolved
Hide resolved
<div className="condensed-list-header bg-darker-2 shared-uri-header"> | ||
Shared Project String | ||
</div> | ||
{!this.props.connections.length && |
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.
@@ -133,13 +169,58 @@ export class CloudFilePicker extends React.Component<ICloudFilePickerProps, IClo | |||
const storageProvider = StorageProviderFactory.createFromConnection(this.state.selectedConnection); | |||
const content = await storageProvider.readText(this.state.selectedFile); | |||
this.props.onSubmit(content); | |||
} else if (this.state.pastedUri && this.getSharedProjectConnectionInfo()) { |
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.
Instead of call getSharedProjectConnectionInfo() twice, should assign result as variable
No description provided.