Skip to content

Commit

Permalink
Ensure that commit process is standardised and display more informati…
Browse files Browse the repository at this point in the history
…on to the user
  • Loading branch information
ArrushC committed Aug 19, 2024
1 parent d67c38a commit 71ee6d8
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="icon" type="image/png" href="/Titan.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Titan</title>
<script type="module" crossorigin src="/assets/index-lqoFXsLn.js"></script>
<script type="module" crossorigin src="/assets/index-DMi1PUBT.js"></script>
<link rel="modulepreload" crossorigin href="/assets/ag-grid-community-Cx90zoxL.js">
<link rel="modulepreload" crossorigin href="/assets/ag-grid-react-DXgOePOU.js">
<link rel="stylesheet" crossorigin href="/assets/index-D9YwCfQp.css">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "titan",
"private": true,
"proxy": "http://localhost:5173",
"version": "1.2.2",
"version": "1.2.2.1",
"type": "module",
"main": "main.js",
"description": "Streamlining your workflow in Revision Control Systems (RCS).",
Expand Down
2 changes: 1 addition & 1 deletion src/components/FilterableTableLogs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function FilterableTableLogs({ setAutoFillSelection = false, isAu
</Tooltip>
</Box>
</Flex>
<TableLogs rowDataLogs={rowDataLogs} quickFilterLogsText={quickFilterLogsText} setAutoFillSelection={setAutoFillSelection} isAutofill={true} />
<TableLogs rowDataLogs={rowDataLogs} quickFilterLogsText={quickFilterLogsText} setAutoFillSelection={setAutoFillSelection} isAutofill={isAutofill} />
</Box>
) : (
<Box>
Expand Down
1 change: 1 addition & 0 deletions src/components/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default function Header() {
const {RaiseClientNotificaiton} = useNotifications();

const handleCheckForUpdates = useCallback(() => {
RaiseClientNotificaiton("Checking for updates...", "info", 3000);
window.electron.checkForUpdates().then((result) => {
console.debug("Check for updates result: ", result);
});
Expand Down
2 changes: 1 addition & 1 deletion src/components/ModalCommit.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export default function ModalCommit({ isModalOpen, closeModal }) {
* Hooks
****************************************************/
useEffect(() => {
setActiveStep(3);
setActiveStep(1);
setCommitLiveResponses([]);
setRevisionsValue("");
setCommitMsgValue("");
Expand Down

0 comments on commit 71ee6d8

Please sign in to comment.