Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "jtallon"

Thanks @ismcagdas that worked a treat. Out of curiousity, on a cold build would you expect the front end to take approximately 3min 52seconds to build on a fast machine? Is there a tip that you can give to increase the cold build time?

Same issue for me - thanks for the steps to fix

We upgraded from 6.8 to 9.0.1 Angular .net core

Since then our rebuilds are much slower. A simple HTML change can take up to 30 seconds or longer to compile and refresh the webpage. Before it used to take a few seconds. Running an AMD Ryzen 5 3600 with 32gb Ram.

Is there anything I can do to speed it up?

Answer

Hi, I've commented on the github post: https://github.com/sweetalert2/sweetalert2/issues/1320

Answer

I am using template version 9.0.1 - Perhaps the way I'm saving isn't correct.

saveButtonClicked() {
	const PerDto = this.getEditPerDto();
	this.showMainSpinner('Saving...');
	this._PersServiceProxy
		.createOrEdit(PerDto)
		.pipe(
			finalize(() => {
				this.hideMainSpinner();
			})
		)
		.subscribe((PerId) => {
			this.notify.success('Person saved succesfully');
			if (this.isNewPer) {
				this.router.navigate([`../${PerId}`], { relativeTo: this._activatedRoute });
				return;
			}
			this.loadPerson(PerId);
		});
}

I would appreciate feedback as this was something that wasn't noticed on my dev environment. I've updated sweetalert2 to version 10.10.0 on the offchance that the bug related to it - however I get the same result. Frozen UI until I refresh the browser.

Answer

We are experiencing the same issue now. Was there a resolution to this? It only happens some users. However for them the page is non responsive until the page is refreshed.

link to GitHub which points here also: https://github.com/sweetalert2/sweetalert2/issues/1320

Prerequisites

Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.

  • Production Verion 9.1:
  • Type: Angular
  • Framework: .net core

If issue related with ABP Framework

  • ABP Framework version: 5.11

Hi there,

We have around 3 million rows in the AuditLogs table, and growing. We dont want to perform a periodic delete because we need these auditlogs to meeting record retention compilance (7 years)...

We are finding the table to be very slow to view the records when viewing them on the AuditLogs Page (app/admin/audit-logs).

Could you outline some strategies that might work to make this table work faster? We have indexes a the few columns we use to filter, while they have helped, still find the table very slow.

Regards JT

Answer

Hi Zony,

We're using Azure DevOps.

We can build the Angular project multiple times and deploy each artifact to a different environment. However this isn't good practice.

We would really like to build the angular project once and then deploy that one build to multiple environments.

The isse we have at the moment is that the angular project requires us to run different publish commands for each enviroment.

Any updates on this?

Question
  • What is your product version? 8.9
  • What is your product type (Angular or MVC)? Angular
  • What is product framework type (.net framework or .net core)? .netCore

Hi Folks,

What is the preferred setup for CI/CD for the angular project?

We wish to build once and deploy to multiple environments.

How best to achieve this?

Showing 31 to 40 of 86 entries