Skip to content

Commit

Permalink
fix: resolved pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rowangamal committed Aug 20, 2024
1 parent a44c287 commit 0d32b9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/views/NextLaunch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
isHovering
? 'transform:scale(1.1);transition: transform .5s;'
: 'transition: transform .5s;'
" transition="transform .2s" src="@/assets/welcome.png" :class="{ 'on-hover': isHovering }" v-bind="props" />
" transition="transform .2s" src="@/assets/about_us.png" :class="{ 'on-hover': isHovering }" v-bind="props" />
</v-hover>
</v-col>
</v-row>
Expand Down
4 changes: 2 additions & 2 deletions server/models/database_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ func TestGetMaintenance(t *testing.T) {

m, err := db.GetMaintenance()
require.NoError(t, err)
require.Equal(t, true, m.Active)
require.True(t, m.Active)
}

func TestUpdateNextLaunch(t *testing.T) {
Expand All @@ -944,5 +944,5 @@ func TestGetNextLaunch(t *testing.T) {

m, err := db.GetNextLaunch()
require.NoError(t, err)
require.Equal(t, true, m.Launched)
require.True(t, m.Launched)
}

0 comments on commit 0d32b9a

Please sign in to comment.