Skip to content

Commit

Permalink
Merge pull request #128 from ChongXern/master
Browse files Browse the repository at this point in the history
Resolve Issue #100
  • Loading branch information
ChongXern committed Apr 11, 2024
2 parents 8442416 + 5f0b41c commit af8c306
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/team/chongxern.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Chong Xern - Project Portfolio Page

## Overview
Finance tracking application that helps keep track of all things related to finances such as income, spending, expenditure, reminders, gifts and more.

### Summary of Contributions
[Code Contributed](https://nus-cs2113-ay2324s2.github.io/tp-dashboard/?search=&sort=groupTitle&sortWithin=title&timeframe=commit&mergegroup=&groupSelect=groupByRepos&breakdown=true&checkedFileTypes=docs~functional-code~test-code~other&since=2024-02-23&tabOpen=true&tabType=authorship&tabAuthor=ChongXern&tabRepo=AY2324S2-CS2113-F14-4%2Ftp%5Bmaster%5D&authorshipIsMergeGroup=false&authorshipFileTypes=docs~functional-code~test-code~other&authorshipIsBinaryFileTypeChecked=false&authorshipIsIgnoredFilesChecked=false/) by Chong Xern
#### Enhancements Implemented

#### Contributions to User Guide

#### Contributions to Developer Guide
2 changes: 1 addition & 1 deletion src/main/java/command/ViewHistoryCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public String execute(TransactionManager manager) throws Exception{
} else {
throw new IncorrectCommandSyntaxException(commandParts[0]);
}
boolean isIncludeBarChart = commandParts.length == 3 && commandParts[2].equals("w/chart");
boolean isIncludeBarChart = commandParts.length == 3 && commandParts[2].equalsIgnoreCase("w/chart");
return manager.showLastNTransactions(numTransactions, isIncludeBarChart);
}
}

0 comments on commit af8c306

Please sign in to comment.