Skip to content

Update the dashboard tagline #44

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

Merged
merged 3 commits into from
May 30, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Standard Angular App Flow

on:
pull_request:
branches: [ "master", "development" ]
branches: ["master", "development", "release/**"]

jobs:
lint:
Expand All @@ -15,7 +15,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18' # Adjust this to the Node.js version your project needs
node-version: "18" # Adjust this to the Node.js version your project needs

- name: Install dependencies
run: npm install
Expand All @@ -34,10 +34,10 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18' # Adjust this to the Node.js version your project needs
node-version: "18" # Adjust this to the Node.js version your project needs

- name: Install dependencies
run: npm install

- name: Build app
run: npm run build
run: npm run build
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing";
import { IonicModule } from "@ionic/angular";

import { FilterExpenseComponent } from './filter-expense.component';
import { FilterExpenseComponent } from "./filter-expense.component";

describe('FilterExpenseComponent', () => {
describe("FilterExpenseComponent", () => {
let component: FilterExpenseComponent;
let fixture: ComponentFixture<FilterExpenseComponent>;

Expand All @@ -18,7 +18,7 @@ describe('FilterExpenseComponent', () => {
fixture.detectChanges();
}));

it('should create', () => {
it("should create", () => {
expect(component).toBeTruthy();
});
});
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
import { Component, OnInit } from '@angular/core';
import { Component, OnInit } from "@angular/core";

@Component({
selector: 'app-filter-expense',
templateUrl: './filter-expense.component.html',
styleUrls: ['./filter-expense.component.scss'],
selector: "app-filter-expense",
templateUrl: "./filter-expense.component.html",
styleUrls: ["./filter-expense.component.scss"],
})
export class FilterExpenseComponent implements OnInit {

constructor() { }

ngOnInit() {}
ngOnInit() {
console.log("Filter expense component");

}

}
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing";
import { IonicModule } from "@ionic/angular";

import { ExpenseCardComponent } from './expense-card.component';
import { ExpenseCardComponent } from "./expense-card.component";

describe('ExpenseCardComponent', () => {
describe("ExpenseCardComponent", () => {
let component: ExpenseCardComponent;
let fixture: ComponentFixture<ExpenseCardComponent>;

Expand All @@ -18,7 +18,7 @@ describe('ExpenseCardComponent', () => {
fixture.detectChanges();
}));

it('should create', () => {
it("should create", () => {
expect(component).toBeTruthy();
});
});
4 changes: 2 additions & 2 deletions src/app/pages/home/home.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

<div id="container">
<h1 class="ion-text-center ion-padding">
What gets measured, Gets managed
No advertisement, No distraction
<br />
<ion-note color="tertiary" class="h4">- Peter F. Drucker</ion-note>
<ion-note color="tertiary" class="h4">- for those who want to rise</ion-note>
</h1>
<section class="transparent-card">
<app-goal-on-dashboard></app-goal-on-dashboard>
Expand Down
Loading