GithubHelp home page GithubHelp logo

Comments (12)

NetanelBasal avatar NetanelBasal commented on July 18, 2024

Do you want to create a PR? The issue is here

from svg-icon.

RonnieRocket147 avatar RonnieRocket147 commented on July 18, 2024

Unfortunately I am too inexperienced to do this, however I can suggest the code change:

private fz: string = null;

...

if (changes.fontSize?.currentValue) {
  resolveFontSize = changes.fontSize.currentValue;
} else if (changes.size?.currentValue) {
  const size = changes.size.currentValue;
  resolveFontSize = this.mergedConfig.sizes[size];
} else if (this.fz !== null) {
  resolveFontSize = this.fz;
} else {
  const size = this.mergedConfig.defaultSize;
  if (size) {
    resolveFontSize = this.mergedConfig.sizes[size];
  }
}

from svg-icon.

NetanelBasal avatar NetanelBasal commented on July 18, 2024

I just tested it and it works fine.
ZWMNrgR9FD

from svg-icon.

NetanelBasal avatar NetanelBasal commented on July 18, 2024

Try to reproduce it on stackblitz, please.

from svg-icon.

RonnieRocket147 avatar RonnieRocket147 commented on July 18, 2024

https://stackblitz.com/edit/angular-jqiivv?file=src/app/app.component.ts

from svg-icon.

NetanelBasal avatar NetanelBasal commented on July 18, 2024

Ok so that was the case on my side: https://stackblitz.com/edit/angular-ylikhn?file=src%2Fapp%2Fapp.module.ts

That's why it important to reproduce :)

from svg-icon.

RonnieRocket147 avatar RonnieRocket147 commented on July 18, 2024

You forgot to define the default md size in the config. Then it will not change back to the default size indeed.

from svg-icon.

NetanelBasal avatar NetanelBasal commented on July 18, 2024

Try 2.1.1

from svg-icon.

RonnieRocket147 avatar RonnieRocket147 commented on July 18, 2024

It works 2 times now, but then it fails again. See my stackblitz.

from svg-icon.

RonnieRocket147 avatar RonnieRocket147 commented on July 18, 2024

resolveFontSize will be set to undefined after the first change. Then the next change it will revert back to default size. I guess my proposed fix will work.

Or add a final else clause to avoid setting this.fz to undefined again:

} else if (!this.fz) {
  const size = this.mergedConfig.defaultSize;
  if (size) {
    resolveFontSize = this.mergedConfig.sizes[size];
  }
} else {
  // No change in the already defined font size
  return;
}

from svg-icon.

NetanelBasal avatar NetanelBasal commented on July 18, 2024

Sorry, I'm not in focus. Try 2.1.2

from svg-icon.

RonnieRocket147 avatar RonnieRocket147 commented on July 18, 2024

And fixed 😃 Thanks for your help and happy 2021!

from svg-icon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.