Product: PowerShell Universal
Version: 1.5.19
I am having trouble getting the auto-refresh to work with a UD dynamic region and an image. The image loads on the initial load of the page, but will not auto-refresh. Inside the UD dynamic is a UDImage cmdlet. What am I doing wrong?
New-UDStyle -Style $Cache:cardStyleLarge -Content {
New-UDCard -Content {
New-UDDynamic -Id 'at&t' -Content {
New-UDImage -Url $attGraphUrl
} -AutoRefresh -AutoRefreshInterval 30
} -Elevation 3 -Title "AT&T"
}
And if it helps, here is my style string.
$Cache:cardStyleLarge = @'
.MuiCard-root {
min-height: 500px !important;
}
'@