We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72e966f commit cd2ddc3Copy full SHA for cd2ddc3
components/linkcard.js
@@ -39,6 +39,15 @@ export default function LinkCard({
39
}
40
// logic to test comment settings data and reset
41
// reset(item);
42
+ if (
43
+ cardInfo.borderRadius !== item.borderRadius ||
44
+ cardInfo.textColor !== item.textColor ||
45
+ cardInfo.bgColor !== item.bgColor
46
+ ) {
47
+ // console.log("reset after common settings change");
48
+ reset(item);
49
+ setCardInfo(item);
50
+ }
51
}, [item]);
52
53
watch((data, { type }) => {
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "linkin",
3
- "version": "0.4.0",
+ "version": "0.5.0",
4
"private": true,
5
"license": "MIT",
6
"description": "Linkin is a customizable self hosted link tree application",
0 commit comments