Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
mikihiir
Helper III
Helper III

Sync Storage Get

Hei, can't figure out, how to make the call syncronous.
Any idea ?

this
.storage.get(this.updateCountName).then(count => { this.updateCount = +count; }) .catch(() => { this.updateCount = 0; this.storage.set(this.updateCountName, this.updateCount.toString()); }); ...

Thanks in advance
1 ACCEPTED SOLUTION
v-viig
Community Champion
Community Champion

What is this.storage? If it returns a Promise you won't be able to make it synchronous.

You can try using async/await that make code cleaner.

 

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

pbicvsupport@microsoft.com

View solution in original post

1 REPLY 1
v-viig
Community Champion
Community Champion

What is this.storage? If it returns a Promise you won't be able to make it synchronous.

You can try using async/await that make code cleaner.

 

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

pbicvsupport@microsoft.com

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors