Skip to content

Commit

Permalink
feat: added Python Flask integration
Browse files Browse the repository at this point in the history
  • Loading branch information
slaveeks committed Oct 29, 2024
1 parent 4d6c3c5 commit 3001f7f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/assets/sprite-icons/flask.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion src/components/event/Overview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@
icon="nuxt"
title="Nuxt"
/>
<DetailsAddons
v-if="getIntegrationAddons('flask')"
class="event-overview__section"
:addons="getIntegrationAddons('flask')"
icon="flask"
title="Flask"
/>
<DetailsAddons
v-if="hasContext"
class="event-overview__section"
Expand Down Expand Up @@ -120,7 +127,7 @@ export default Vue.extend({
return null;
}
const integrationToFilter = [ 'vue', 'nuxt' ];
const integrationToFilter = [ 'vue', 'nuxt', 'flask' ];
const filteredAddons = {};
Object.entries(this.event.payload.addons).forEach(([name, value]) => {
Expand Down

0 comments on commit 3001f7f

Please sign in to comment.