Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Fix audio result license spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
sarayourfriend committed Dec 13, 2021
1 parent 70f027a commit 3f05865
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/AudioTrack/layouts/Row.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</span>
</div>

<div class="part-b inline-flex space-x-1">
<div class="part-b inline-flex gap-1">
<div v-if="isMedium">
{{ timeFmt(audio.duration) }} {{ $t('interpunct') }}
<template v-if="audio.category">
Expand Down
6 changes: 3 additions & 3 deletions test/unit/specs/components/MediaTag/media-tag.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ describe('MediaTag', () => {
options = { propsData: props }
})

it('should render an span tag by default', () => {
it('should render an div tag by default', () => {
const wrapper = render(MediaTag, options)
expect(wrapper.vm.$props.tag).toEqual('span')
expect(wrapper.vm.$el).toBeInstanceOf(HTMLSpanElement)
expect(wrapper.vm.$props.tag).toEqual('div')
expect(wrapper.vm.$el).toBeInstanceOf(HTMLDivElement)
})

it('should render the supplied tag', () => {
Expand Down

0 comments on commit 3f05865

Please sign in to comment.