-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated Logitar Vue3 UI. * Removed a todo. * Completed Toasts and error handling. * Removed package-lock.json * Removed package-log.json * Returning the saved item. * Using saved return item and exclude selected types. * Added a refresh button. * Fixed toasts. * Fixed sorts and added an action column. * Code clean-up.
- Loading branch information
Showing
21 changed files
with
247 additions
and
5,682 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace PokeData.Contracts.Roster; | ||
|
||
public record SavedRosterItem | ||
{ | ||
public RosterItem Item { get; set; } = new(); | ||
public RosterStatistics Stats { get; set; } = new(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
VITE_APP_API_BASE_URL="http://localhost:43551/" | ||
__VITE_APP_API_BASE_URL="https://localhost:32778/" | ||
__VITE_APP_API_BASE_URL="https://localhost:32768/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
/// <reference types="vite/client" /> | ||
// VITE_APP_API_BASE_URL // TODO(fpion): implement | ||
interface ImportMetaEnv { | ||
readonly VITE_APP_API_BASE_URL: string; | ||
} | ||
|
||
interface ImportMeta { | ||
readonly env: ImportMetaEnv; | ||
} |
Oops, something went wrong.