Skip to content

Commit

Permalink
Merge pull request #51 from azkyakhan/#21aqct8
Browse files Browse the repository at this point in the history
  • Loading branch information
dt2patel authored Feb 23, 2022
2 parents 4105bd3 + 506ca11 commit 55a3e58
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions changelogs/unreleased/-21aqct8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Removed fullscreen=true from ion-content of all pages
ticket_id: "#21aqct8"
merge_request: 51
author: azkyakhan
type: changed
2 changes: 1 addition & 1 deletion src/views/catalog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</ion-toolbar>
</ion-header>

<ion-content :fullscreen="true">
<ion-content>
<!--Segment content -->
<div class="search-filter">
<ion-searchbar />
Expand Down
2 changes: 1 addition & 1 deletion src/views/login.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<ion-page>
<ion-content :fullscreen="true">
<ion-content>
<div class="flex">
<form class="login-container" @keyup.enter="login(form)" @submit.prevent="login(form)">
<img src="../assets/images/hc.png"/>
Expand Down
2 changes: 1 addition & 1 deletion src/views/orders.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</ion-toolbar>
</ion-header>

<ion-content :fullscreen="true">
<ion-content>
<div class="header">
<div class="search">
<ion-searchbar @ionFocus="selectSearchBarText($event)" @ionClear="query.queryString = ''; updateQuery()" :value="query.queryString" v-on:keyup.enter="query.queryString = $event.target.value; updateQuery()"> </ion-searchbar>
Expand Down
2 changes: 1 addition & 1 deletion src/views/product-details.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</ion-toolbar>
</ion-header>

<ion-content :fullscreen="true">
<ion-content>
<div class="header">
<div class="product-image">
<!-- TODO Create a separate component to handled default image -->
Expand Down
2 changes: 1 addition & 1 deletion src/views/products.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ion-toolbar>
</ion-header>

<ion-content :fullscreen="true">
<ion-content>
<ion-searchbar @ionFocus="selectSearchBarText($event)" :placeholder="$t('Search products')" v-model="queryString" v-on:keyup.enter="getProducts()"></ion-searchbar>

<!-- Empty state -->
Expand Down
2 changes: 1 addition & 1 deletion src/views/settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</ion-toolbar>
</ion-header>

<ion-content :fullscreen="true">
<ion-content>
<ion-item>
<ion-label>{{ $t("Brand") }}</ion-label>
<ion-select @ionChange="updateBrand($event)" interface="popover" :value="selectedBrand">
Expand Down

0 comments on commit 55a3e58

Please sign in to comment.