Skip to content
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

chore: Replace animated screenshots on "Publish" page with static ones #2045

Merged
merged 1 commit into from
Feb 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { TextField } from 'office-ui-fabric-react/lib/TextField';
import { StoreContext } from '../../../store';

import { styles } from './styles';
import processGif from './deploy-create-output.gif';
import processGif from './deploy-create-output.png';

export const DeployWizardStep2 = props => {
const { state } = useContext(StoreContext);
Expand Down Expand Up @@ -57,7 +57,7 @@ export const DeployWizardStep2 = props => {
<img
style={styles.gif}
src={processGif}
alt={formatMessage('Animation showing the command line tool output')}
alt={formatMessage('This image shows the command line tool output')}
/>
</StackItem>
</Stack>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { DialogFooter } from 'office-ui-fabric-react/lib/Dialog';
import { TextField } from 'office-ui-fabric-react/lib/TextField';

import { styles } from './styles';
import processGif from './deploy-deploy-output.gif';
import processGif from './deploy-deploy-output.png';

export const DeployWizardStep3 = props => {
const { closeModal, botValues } = props;
Expand Down Expand Up @@ -50,7 +50,7 @@ export const DeployWizardStep3 = props => {
<img
style={styles.gif}
src={processGif}
alt={formatMessage('Animation showing the command line tool output')}
alt={formatMessage('This image shows the command line tool output')}
/>
</StackItem>
</Stack>
Expand Down