diff --git a/services/bots/src/discord/commands/home-assistant/integration.ts b/services/bots/src/discord/commands/home-assistant/integration.ts index 9f09f2f..0d9d861 100644 --- a/services/bots/src/discord/commands/home-assistant/integration.ts +++ b/services/bots/src/discord/commands/home-assistant/integration.ts @@ -75,6 +75,13 @@ export class CommandHomeassistantIntegration { description: integrationData.description, thumbnail: { url: `https://brands.home-assistant.io/${domain}/dark_logo.png` }, fields: [ + { + name: 'Documentation', + value: `[View the documentation](https://${ + channel === 'beta' ? 'rc' : 'www' + }.home-assistant.io/integrations/${domain}/)`, + inline: true, + }, { name: 'Quality scale', value: `[${ @@ -94,13 +101,6 @@ export class CommandHomeassistantIntegration { value: `[${integrationData.integration_type}](https://developers.home-assistant.io/docs/creating_integration_manifest#integration-type)`, inline: true, }, - { - name: 'Documentation', - value: `[View the documentation](https://${ - channel === 'beta' ? 'rc' : 'www' - }.home-assistant.io/integrations/${domain}/)`, - inline: true, - }, { name: 'Source', value: `[View the source on GitHub](https://github.com/home-assistant/core/tree/dev/homeassistant/components/${domain})`,