Skip to content

Commit

Permalink
Merge pull request #1591 from pangeacyber/cfagan/PAN-17322
Browse files Browse the repository at this point in the history
PAN-17322
  • Loading branch information
cj-f authored Oct 11, 2024
2 parents ee3bc6d + a528933 commit ad9e134
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 3 deletions.
6 changes: 6 additions & 0 deletions packages/react-mui-audit-log-viewer/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ jest.config.js
package.json
rollup.config.js
tsconfig.json
vite.config.mts
javascript.code-workspace
typedoc.json
docs/
src/
.storybook/
*.tgz
CHANGELOG.md
.env
.yarn
6 changes: 6 additions & 0 deletions packages/react-mui-audit-log-viewer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.95] - 2024-10-11

### Fixed

- Allow initialQuery of empty string to reset

## [0.0.94] - 2024-09-24

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/react-mui-audit-log-viewer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pangeacyber/react-mui-audit-log-viewer",
"version": "0.0.94",
"version": "0.0.95",
"description": "An extension of material ui data-grid for Pangea audit log records",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-mui-audit-log-viewer/src/hooks/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const useAuditQueryState = (
);

useEffect(() => {
if (initialQuery) {
if (initialQuery !== undefined) {
setQuery(initialQuery);
}
}, [initialQuery]);
Expand Down
6 changes: 6 additions & 0 deletions packages/react-mui-share-file-viewer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.2] - 2024-10-11

### Changed

- Publish @pangeacyber/react-mui-share-file-viewer as a public package

## [0.0.1] - 2024-10-03

### Changed
Expand Down
2 changes: 1 addition & 1 deletion packages/react-mui-share-file-viewer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pangeacyber/react-mui-share-file-viewer",
"version": "0.0.1",
"version": "0.0.2",
"description": "An extension of material ui data-grid for Pangea share file objects",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down

0 comments on commit ad9e134

Please sign in to comment.