Skip to content

Commit

Permalink
- for split transactions show group_title
Browse files Browse the repository at this point in the history
- generate gzip and brotli for built files
  • Loading branch information
cioraneanu committed Dec 15, 2024
1 parent 661f253 commit 09e8470
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion front/components/list-items/transaction-list-item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const displayedAccounts = computed(() => {
return [sourceAccount.value, destinationAccount.value]
})
const description = computed(() => _.get(firstTransaction.value, 'description', ' - '))
const description = computed(() => get(props.value, 'attributes.group_title') ?? get(firstTransaction.value, 'description') ?? ' - ')
// const category = computed(() => _.get(firstTransaction.value, 'category'))
const categories = computed(() => {
return transactions.value
Expand Down
7 changes: 7 additions & 0 deletions front/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ import pkg from './package.json'
const appName = 'Firefly Pico'
const appDescription = 'Firefly III companion app.'
export default defineNuxtConfig({

nitro: {
compressPublicAssets: {
gzip: true,
brotli: true
}
},
runtimeConfig: {
public: {
version: pkg.version,
Expand Down

0 comments on commit 09e8470

Please sign in to comment.