Code Monkey home page Code Monkey logo

Comments (6)

JanCizmar avatar JanCizmar commented on August 30, 2024 1

OK, so I reproduced locally on sample project. Going to fix it.

from tolgee-js.

JanCizmar avatar JanCizmar commented on August 30, 2024

Hi!
Thanks for submitting. It's strange since we use exactelly the same stack and tooltips work fine.
Can you please provide a stacktrace of the error? Minimum example project would be also great.

from tolgee-js.

christian-predebon avatar christian-predebon commented on August 30, 2024

I was here writing the repro, glad to hear you managed to reproduce it! Let me know if you need any help.

from tolgee-js.

JanCizmar avatar JanCizmar commented on August 30, 2024

It seems like this happens, because Material UI is removing the title attribute from the child while it renders the tooltip. I am looking into it, but if you need quick workaround, you can add aria-label attribute to the child element, so in-context localization stays working and use noWrap in the tooltips title attribute.

import './App.css';
import {Tooltip} from "@material-ui/core";
import {useTranslate} from "@tolgee/react";

function App() {
  const t = useTranslate()

  return (
    <div className="App">
      <header className="App-header">
        <Tooltip title={t({key: 'topbar.account', noWrap: true})}>
          <div aria-label={t({key: 'topbar.account'})}>Hello</div>
        </Tooltip>
      </header>
    </div>
  );
}

export default App;

from tolgee-js.

christian-predebon avatar christian-predebon commented on August 30, 2024

I didn't notice that Material UI was removing the title attribute, anyway I'm gonna use the workaround for the time being (it works well). Thanks!

from tolgee-js.

JanCizmar avatar JanCizmar commented on August 30, 2024

It's fixed in the PR, but I still recommend to use the workaround. Wit noWrap it will be wrapped, so the position tooltip will be counted with longer text and it's not going to be positioned well.

image

from tolgee-js.

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.