mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
PLT-4010 - Updating integration icons (#3885)
This commit is contained in:
committed by
Joram Wilander
parent
dfaccff44b
commit
c2eac2b5dc
@@ -6,8 +6,10 @@ import React from 'react';
|
||||
import {FormattedMessage} from 'react-intl';
|
||||
import IntegrationOption from './integration_option.jsx';
|
||||
|
||||
import WebhookIcon from 'images/webhook_icon.jpg';
|
||||
import AppIcon from 'images/oauth_icon.png';
|
||||
import IncomingWebhookIcon from 'images/incoming_webhook.jpg';
|
||||
import OutgoingWebhookIcon from 'images/outgoing_webhook.jpg';
|
||||
import SlashCommandIcon from 'images/slash_command_icon.jpg';
|
||||
import OAuthIcon from 'images/oauth_icon.png';
|
||||
|
||||
export default class Integrations extends React.Component {
|
||||
static get propTypes() {
|
||||
@@ -24,7 +26,7 @@ export default class Integrations extends React.Component {
|
||||
options.push(
|
||||
<IntegrationOption
|
||||
key='incomingWebhook'
|
||||
image={WebhookIcon}
|
||||
image={IncomingWebhookIcon}
|
||||
title={
|
||||
<FormattedMessage
|
||||
id='integrations.incomingWebhook.title'
|
||||
@@ -46,7 +48,7 @@ export default class Integrations extends React.Component {
|
||||
options.push(
|
||||
<IntegrationOption
|
||||
key='outgoingWebhook'
|
||||
image={WebhookIcon}
|
||||
image={OutgoingWebhookIcon}
|
||||
title={
|
||||
<FormattedMessage
|
||||
id='integrations.outgoingWebhook.title'
|
||||
@@ -68,7 +70,7 @@ export default class Integrations extends React.Component {
|
||||
options.push(
|
||||
<IntegrationOption
|
||||
key='command'
|
||||
image={WebhookIcon}
|
||||
image={SlashCommandIcon}
|
||||
title={
|
||||
<FormattedMessage
|
||||
id='integrations.command.title'
|
||||
@@ -90,7 +92,7 @@ export default class Integrations extends React.Component {
|
||||
options.push(
|
||||
<IntegrationOption
|
||||
key='oauth2Apps'
|
||||
image={AppIcon}
|
||||
image={OAuthIcon}
|
||||
title={
|
||||
<FormattedMessage
|
||||
id='integrations.oauthApps.title'
|
||||
|
||||
BIN
webapp/images/incoming_webhook.jpg
Normal file
BIN
webapp/images/incoming_webhook.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.7 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 22 KiB |
BIN
webapp/images/outgoing_webhook.jpg
Normal file
BIN
webapp/images/outgoing_webhook.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.8 KiB |
BIN
webapp/images/slash_command_icon.jpg
Normal file
BIN
webapp/images/slash_command_icon.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.0 KiB |
@@ -360,7 +360,6 @@
|
||||
.integration-option__image {
|
||||
height: 80px;
|
||||
margin: .5em 0 .7em;
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.integration-option__title {
|
||||
|
||||
Reference in New Issue
Block a user