diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 6a3007f3a..ea39b2daf 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -5,6 +5,7 @@ - fixed #10630: If macro says that 0 is true - WebGUI::Shop::PayDriver::PayPal::PayPalStd replaced by WebGUI::Shop::PayDriver::PayPal. PayPalStd fought the Shop API and didn't work. - fixed #10633: GET requests in Operation/User require valid CSRF token. + - fixed #10621: ThingRecord needs an Asset Icon 7.7.14 - fixed #10606: shelf selector diff --git a/lib/WebGUI/Asset/Sku/ThingyRecord.pm b/lib/WebGUI/Asset/Sku/ThingyRecord.pm index 74063b865..748a76942 100644 --- a/lib/WebGUI/Asset/Sku/ThingyRecord.pm +++ b/lib/WebGUI/Asset/Sku/ThingyRecord.pm @@ -104,7 +104,7 @@ sub definition { ); push @{$definition}, { assetName => $i18n->get('assetName'), - icon => 'ThingyRecord.gif', + icon => 'thingyRecord.gif', autoGenerateForms => 1, tableName => 'ThingyRecord', className => __PACKAGE__, diff --git a/www/extras/assets/small/thingyRecord.gif b/www/extras/assets/small/thingyRecord.gif new file mode 100644 index 000000000..9be2066a1 Binary files /dev/null and b/www/extras/assets/small/thingyRecord.gif differ diff --git a/www/extras/assets/thingyRecord.gif b/www/extras/assets/thingyRecord.gif new file mode 100644 index 000000000..db0966d77 Binary files /dev/null and b/www/extras/assets/thingyRecord.gif differ