Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed full screen from ion-content in all pages (#226cy65) #63

Merged
merged 2 commits into from
Feb 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions changelogs/unreleased/-226cy65.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Removed full screen from ion-content in all pages
ticket_id: "#226cy65"
merge_request: 63
author: Azkya Khan
type: changed
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)">
<Logo />
Expand Down
2 changes: 1 addition & 1 deletion src/views/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ion-title>{{ $t("Cycle Count") }}</ion-title>
</ion-toolbar>
</ion-header>
<ion-content :fullscreen="true">
<ion-content>
<ion-searchbar @ionFocus="selectSearchBarText($event)" v-model="queryString" :placeholder="$t('Search')" v-on:keyup.enter="getProducts()"/>

<ion-list v-if="products.length > 0">
Expand Down
2 changes: 1 addition & 1 deletion src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</ion-toolbar>
</ion-header>

<ion-content :fullscreen="true">
<ion-content>
<ion-list>
<!-- Select store -->
<ion-item>
Expand Down
2 changes: 1 addition & 1 deletion src/views/Upload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</ion-toolbar>
</ion-header>

<ion-content :fullscreen="true">
<ion-content>
<ion-card v-for="product in uploadProducts" :key="product.productId">
<ion-item lines="none">
<ion-thumbnail slot="start">
Expand Down
2 changes: 1 addition & 1 deletion src/views/count.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</ion-toolbar>
</ion-header>

<ion-content :fullscreen="true">
<ion-content>
<div class="header">
<div class="product-image">
<Image :src="product.mainImageUrl"/>
Expand Down