Compare commits
4 Commits
ee361bf669
...
22cde840ea
Author | SHA1 | Date | |
---|---|---|---|
22cde840ea | |||
|
795e4582a8 | ||
|
ddc7989280 | ||
|
82fe2590bf |
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Improved the symbol validation in the _Yahoo Finance_ service (get asset profiles)
|
- Improved the symbol validation in the _Yahoo Finance_ service (get asset profiles)
|
||||||
|
- Refactored `lodash.uniq` with `Array.from(new Set(...))`
|
||||||
- Refreshed the cryptocurrencies list
|
- Refreshed the cryptocurrencies list
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -60,6 +60,10 @@ Remove permission in `UserService` using `without()`
|
|||||||
|
|
||||||
Use `@if (user?.settings?.isExperimentalFeatures) {}` in HTML template
|
Use `@if (user?.settings?.isExperimentalFeatures) {}` in HTML template
|
||||||
|
|
||||||
|
## Component Library (_Storybook_)
|
||||||
|
|
||||||
|
https://ghostfol.io/development/storybook
|
||||||
|
|
||||||
## Git
|
## Git
|
||||||
|
|
||||||
### Rebase
|
### Rebase
|
||||||
|
@ -49,7 +49,7 @@ import {
|
|||||||
min,
|
min,
|
||||||
subDays
|
subDays
|
||||||
} from 'date-fns';
|
} from 'date-fns';
|
||||||
import { isNumber, sortBy, sum, uniq, uniqBy } from 'lodash';
|
import { isNumber, sortBy, sum, uniqBy } from 'lodash';
|
||||||
|
|
||||||
export abstract class PortfolioCalculator {
|
export abstract class PortfolioCalculator {
|
||||||
protected static readonly ENABLE_LOGGING = false;
|
protected static readonly ENABLE_LOGGING = false;
|
||||||
@ -222,7 +222,7 @@ export abstract class PortfolioCalculator {
|
|||||||
|
|
||||||
const exchangeRatesByCurrency =
|
const exchangeRatesByCurrency =
|
||||||
await this.exchangeRateDataService.getExchangeRatesByCurrency({
|
await this.exchangeRateDataService.getExchangeRatesByCurrency({
|
||||||
currencies: uniq(Object.values(currencies)),
|
currencies: Array.from(new Set(Object.values(currencies))),
|
||||||
endDate: endOfDay(this.endDate),
|
endDate: endOfDay(this.endDate),
|
||||||
startDate: this.startDate,
|
startDate: this.startDate,
|
||||||
targetCurrency: this.currency
|
targetCurrency: this.currency
|
||||||
|
@ -82,7 +82,7 @@ import {
|
|||||||
parseISO,
|
parseISO,
|
||||||
set
|
set
|
||||||
} from 'date-fns';
|
} from 'date-fns';
|
||||||
import { isEmpty, uniq } from 'lodash';
|
import { isEmpty } from 'lodash';
|
||||||
|
|
||||||
import { PortfolioCalculator } from './calculator/portfolio-calculator';
|
import { PortfolioCalculator } from './calculator/portfolio-calculator';
|
||||||
import {
|
import {
|
||||||
@ -2032,14 +2032,16 @@ export class PortfolioService {
|
|||||||
where: { id: filters[0].id }
|
where: { id: filters[0].id }
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
const accountIds = uniq(
|
const accountIds = Array.from(
|
||||||
activities
|
new Set(
|
||||||
.filter(({ accountId }) => {
|
activities
|
||||||
return accountId;
|
.filter(({ accountId }) => {
|
||||||
})
|
return accountId;
|
||||||
.map(({ accountId }) => {
|
})
|
||||||
return accountId;
|
.map(({ accountId }) => {
|
||||||
})
|
return accountId;
|
||||||
|
})
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
currentAccounts = await this.accountService.accounts({
|
currentAccounts = await this.accountService.accounts({
|
||||||
|
@ -23,7 +23,7 @@ import {
|
|||||||
isToday,
|
isToday,
|
||||||
subDays
|
subDays
|
||||||
} from 'date-fns';
|
} from 'date-fns';
|
||||||
import { isNumber, uniq } from 'lodash';
|
import { isNumber } from 'lodash';
|
||||||
import ms from 'ms';
|
import ms from 'ms';
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
@ -515,7 +515,7 @@ export class ExchangeRateDataService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return uniq(currencies).filter(Boolean).sort();
|
return Array.from(new Set(currencies)).filter(Boolean).sort();
|
||||||
}
|
}
|
||||||
|
|
||||||
private prepareCurrencyPairs(aCurrencies: string[]) {
|
private prepareCurrencyPairs(aCurrencies: string[]) {
|
||||||
|
@ -20,7 +20,6 @@ import {
|
|||||||
} from '@angular/forms';
|
} from '@angular/forms';
|
||||||
import { MatDialogRef } from '@angular/material/dialog';
|
import { MatDialogRef } from '@angular/material/dialog';
|
||||||
import { isISO4217CurrencyCode } from 'class-validator';
|
import { isISO4217CurrencyCode } from 'class-validator';
|
||||||
import { uniq } from 'lodash';
|
|
||||||
import { Subject, takeUntil } from 'rxjs';
|
import { Subject, takeUntil } from 'rxjs';
|
||||||
|
|
||||||
import { CreateAssetProfileDialogMode } from './interfaces/interfaces';
|
import { CreateAssetProfileDialogMode } from './interfaces/interfaces';
|
||||||
@ -87,7 +86,9 @@ export class CreateAssetProfileDialog implements OnInit, OnDestroy {
|
|||||||
this.createAssetProfileForm.get('addCurrency').value as string
|
this.createAssetProfileForm.get('addCurrency').value as string
|
||||||
).toUpperCase();
|
).toUpperCase();
|
||||||
|
|
||||||
const currencies = uniq([...this.customCurrencies, currency]).sort();
|
const currencies = Array.from(
|
||||||
|
new Set([...this.customCurrencies, currency])
|
||||||
|
).sort();
|
||||||
|
|
||||||
this.dataService
|
this.dataService
|
||||||
.putAdminSetting(PROPERTY_CURRENCIES, {
|
.putAdminSetting(PROPERTY_CURRENCIES, {
|
||||||
|
@ -24,7 +24,6 @@ import { FormBuilder, Validators } from '@angular/forms';
|
|||||||
import { MatSlideToggleChange } from '@angular/material/slide-toggle';
|
import { MatSlideToggleChange } from '@angular/material/slide-toggle';
|
||||||
import { MatSnackBar } from '@angular/material/snack-bar';
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
||||||
import { format, parseISO } from 'date-fns';
|
import { format, parseISO } from 'date-fns';
|
||||||
import { uniq } from 'lodash';
|
|
||||||
import ms from 'ms';
|
import ms from 'ms';
|
||||||
import { EMPTY, Subject, throwError } from 'rxjs';
|
import { EMPTY, Subject, throwError } from 'rxjs';
|
||||||
import { catchError, takeUntil } from 'rxjs/operators';
|
import { catchError, takeUntil } from 'rxjs/operators';
|
||||||
@ -108,7 +107,7 @@ export class UserAccountSettingsComponent implements OnDestroy, OnInit {
|
|||||||
);
|
);
|
||||||
|
|
||||||
this.locales.push(this.user.settings.locale);
|
this.locales.push(this.user.settings.locale);
|
||||||
this.locales = uniq(this.locales.sort());
|
this.locales = Array.from(new Set(this.locales)).sort();
|
||||||
|
|
||||||
this.changeDetectorRef.markForCheck();
|
this.changeDetectorRef.markForCheck();
|
||||||
}
|
}
|
||||||
|
@ -7589,7 +7589,7 @@
|
|||||||
<target state="new">AI prompt has been copied to the clipboard</target>
|
<target state="new">AI prompt has been copied to the clipboard</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616747898909934803" datatype="html">
|
<trans-unit id="1616747898909934803" datatype="html">
|
||||||
@ -7685,7 +7685,7 @@
|
|||||||
<target state="new">Open Duck.ai</target>
|
<target state="new">Open Duck.ai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
@ -7589,7 +7589,7 @@
|
|||||||
<target state="translated">KI-Anweisung wurde in die Zwischenablage kopiert</target>
|
<target state="translated">KI-Anweisung wurde in die Zwischenablage kopiert</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616747898909934803" datatype="html">
|
<trans-unit id="1616747898909934803" datatype="html">
|
||||||
@ -7685,7 +7685,7 @@
|
|||||||
<target state="translated">Öffne Duck.ai</target>
|
<target state="translated">Öffne Duck.ai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
@ -7590,7 +7590,7 @@
|
|||||||
<target state="new">AI prompt has been copied to the clipboard</target>
|
<target state="new">AI prompt has been copied to the clipboard</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616747898909934803" datatype="html">
|
<trans-unit id="1616747898909934803" datatype="html">
|
||||||
@ -7686,7 +7686,7 @@
|
|||||||
<target state="new">Open Duck.ai</target>
|
<target state="new">Open Duck.ai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
@ -7589,7 +7589,7 @@
|
|||||||
<target state="new">AI prompt has been copied to the clipboard</target>
|
<target state="new">AI prompt has been copied to the clipboard</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616747898909934803" datatype="html">
|
<trans-unit id="1616747898909934803" datatype="html">
|
||||||
@ -7685,7 +7685,7 @@
|
|||||||
<target state="new">Open Duck.ai</target>
|
<target state="new">Open Duck.ai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
@ -7590,7 +7590,7 @@
|
|||||||
<target state="new">AI prompt has been copied to the clipboard</target>
|
<target state="new">AI prompt has been copied to the clipboard</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616747898909934803" datatype="html">
|
<trans-unit id="1616747898909934803" datatype="html">
|
||||||
@ -7686,7 +7686,7 @@
|
|||||||
<target state="new">Open Duck.ai</target>
|
<target state="new">Open Duck.ai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
@ -7589,7 +7589,7 @@
|
|||||||
<target state="new">AI prompt has been copied to the clipboard</target>
|
<target state="new">AI prompt has been copied to the clipboard</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616747898909934803" datatype="html">
|
<trans-unit id="1616747898909934803" datatype="html">
|
||||||
@ -7685,7 +7685,7 @@
|
|||||||
<target state="new">Open Duck.ai</target>
|
<target state="new">Open Duck.ai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
@ -7589,7 +7589,7 @@
|
|||||||
<target state="new">AI prompt has been copied to the clipboard</target>
|
<target state="new">AI prompt has been copied to the clipboard</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616747898909934803" datatype="html">
|
<trans-unit id="1616747898909934803" datatype="html">
|
||||||
@ -7685,7 +7685,7 @@
|
|||||||
<target state="new">Open Duck.ai</target>
|
<target state="new">Open Duck.ai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
@ -7589,7 +7589,7 @@
|
|||||||
<target state="new">AI prompt has been copied to the clipboard</target>
|
<target state="new">AI prompt has been copied to the clipboard</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616747898909934803" datatype="html">
|
<trans-unit id="1616747898909934803" datatype="html">
|
||||||
@ -7685,7 +7685,7 @@
|
|||||||
<target state="new">Open Duck.ai</target>
|
<target state="new">Open Duck.ai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
@ -7589,7 +7589,7 @@
|
|||||||
<target state="new">AI prompt has been copied to the clipboard</target>
|
<target state="new">AI prompt has been copied to the clipboard</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616747898909934803" datatype="html">
|
<trans-unit id="1616747898909934803" datatype="html">
|
||||||
@ -7685,7 +7685,7 @@
|
|||||||
<target state="new">Open Duck.ai</target>
|
<target state="new">Open Duck.ai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
@ -7597,7 +7597,7 @@
|
|||||||
<target state="translated">Запит AI скопійовано в буфер обміну</target>
|
<target state="translated">Запит AI скопійовано в буфер обміну</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="4499ce8c46ad55564b23a42ed752e72984c0248f" datatype="html">
|
<trans-unit id="4499ce8c46ad55564b23a42ed752e72984c0248f" datatype="html">
|
||||||
@ -7685,7 +7685,7 @@
|
|||||||
<target state="new">Open Duck.ai</target>
|
<target state="new">Open Duck.ai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
@ -6867,7 +6867,7 @@
|
|||||||
<source>AI prompt has been copied to the clipboard</source>
|
<source>AI prompt has been copied to the clipboard</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616747898909934803" datatype="html">
|
<trans-unit id="1616747898909934803" datatype="html">
|
||||||
@ -6951,7 +6951,7 @@
|
|||||||
<source>Open Duck.ai</source>
|
<source>Open Duck.ai</source>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
@ -7590,7 +7590,7 @@
|
|||||||
<target state="new">AI prompt has been copied to the clipboard</target>
|
<target state="new">AI prompt has been copied to the clipboard</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">170</context>
|
<context context-type="linenumber">173</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="1616747898909934803" datatype="html">
|
<trans-unit id="1616747898909934803" datatype="html">
|
||||||
@ -7686,7 +7686,7 @@
|
|||||||
<target state="new">Open Duck.ai</target>
|
<target state="new">Open Duck.ai</target>
|
||||||
<context-group purpose="location">
|
<context-group purpose="location">
|
||||||
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
<context context-type="sourcefile">apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts</context>
|
||||||
<context context-type="linenumber">171</context>
|
<context context-type="linenumber">174</context>
|
||||||
</context-group>
|
</context-group>
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
<trans-unit id="70a67e04629f6d412db0a12d51820b480788d795" datatype="html">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user