Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Feb 11, 2025
1 parent 611888d commit ea1b32b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion MyApp/_pages/autoquery/text-to-blazor.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Using AutoQuery CRUD UI in a Text to Blazor App
The TypeScript Data Models enable a rapid development experience for defining an App's Data Models which are used
to generate the necessary AutoQuery CRUD APIs to support an Admin UI.

An example of the producitivity of this approach is the effortless support for maintaining a detailed audit history for changes to select tables by inheriting from the `AuditBase` base class, e.g:
An example of the productivity of this approach is the effortless support for maintaining a detailed audit history for changes to select tables by inheriting from the `AuditBase` base class, e.g:

```ts
export class Job extends AuditBase {
Expand Down
Binary file not shown.
14 changes: 14 additions & 0 deletions MyApp/wwwroot/pages/releases/v8_06.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import AudioPlayer from "../podcasts/AudioPlayer.mjs"
import AsciiCinema from '../components/AsciiCinema.mjs'

export default {
install(app) {
},
components: {
AudioPlayer,
AsciiCinema,
},
setup() {
return { }
}
}

0 comments on commit ea1b32b

Please sign in to comment.