code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/userscript.user.js b/userscript.user.js @@ -1669,7 +1669,7 @@ var $$IMU_EXPORT$$;
mouseover_scrollx_behavior: "gallery",
scroll_zoom_behavior: "fitfull",
// thanks to regis on discord for the idea
- scroll_incremental_mult: 2,
+ scroll_incremental_mult: 1.25,
mouseover_move_with_cursor: false,
zoom_out_to_... | 12 |
diff --git a/src/plugins/Url/UrlUI.js b/src/plugins/Url/UrlUI.js @@ -8,6 +8,7 @@ class UrlUI extends Component {
}
componentDidMount () {
+ this.input.value = ''
// My guess about why browser scrolls to top on focus:
// Component is mounted right away, but the tab panel might be animating
// still, so input element is ... | 0 |
diff --git a/articles/logs/index.md b/articles/logs/index.md @@ -23,11 +23,13 @@ Please note that administrative actions will show up in the logs as `API Operati
### How long is log file data available?
-The length of time for which your data is stored varies depending on your plan.
+The length of time log file data is... | 0 |
diff --git a/plugins/picture-in-picture/style.css b/plugins/picture-in-picture/style.css -/* Make entire window draggable */
-body {
- -webkit-app-region: drag;
-}
-button {
- -webkit-app-region: no-drag;
-}
-
ytmusic-player-bar.pip svg,
ytmusic-player-bar.pip yt-formatted-string {
filter: drop-shadow(2px 4px 6px black... | 7 |
diff --git a/Source/Core/EllipsoidGeometry.js b/Source/Core/EllipsoidGeometry.js @@ -480,6 +480,7 @@ define([
var normalIndex = 0;
var tangentIndex = 0;
var bitangentIndex = 0;
+ var vertexCountHalf = vertexCount / 2.0;
var ellipsoid;
var ellipsoidOuter = Ellipsoid.fromCartesian3(radii);
@@ -521,13 +522,23 @@ define([
... | 1 |
diff --git a/src/canvas/baseCanvas.js b/src/canvas/baseCanvas.js @@ -277,7 +277,7 @@ class BaseCanvas extends Canvas {
newNode = this.addNode(_existNode, true);
} else {
let _nodeObj = null;
- if (_node instanceof Node || _node._type === 'node') {
+ if (_node instanceof Node || _node.__type === 'node') {
_nodeObj = _no... | 3 |
diff --git a/src/sdk/base/common.js b/src/sdk/base/common.js @@ -442,7 +442,7 @@ Woogeen.Common = (function() {
} else if (result = linuxRegex.exec(userAgent)) {
info.os = {
name: 'Linux',
- versoin: 'Unknown'
+ version: 'Unknown'
};
} else if (result = androidRegex.exec(userAgent)) {
info.os = {
| 1 |
diff --git a/src/commands/build/index.js b/src/commands/build/index.js @@ -25,24 +25,11 @@ class BuildCommand extends Command {
const { dry = false } = parseRawFlags(raw)
const [token] = this.getConfigToken()
- const config = await this.getConfig()
+ // Try current directory first, then site root
+ const config = (awai... | 11 |
diff --git a/models/cards.js b/models/cards.js @@ -1412,15 +1412,24 @@ Cards.mutations({
assignAssignee(assigneeId) {
// If there is not any assignee, allow one assignee, not more.
+ /*
if (this.getAssignees().length === 0) {
return {
$addToSet: {
assignees: assigneeId,
},
};
- } else {
- return false;
- }
+ */
+ // Al... | 11 |
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -218,7 +218,11 @@ jobs:
docker run --volumes-from configs --network net0 -e API_SERVER -e AUTH_SERVER --workdir /usr/src/app kindlyops/apitest cucumber
echo $WEBUI_TEST_CERT|base64 -d - > fullchain.pem
echo $WEBUI_TEST_KEY|base64 -d - > privkey.pem
- docker ru... | 4 |
diff --git a/src/components/stepFour/index.js b/src/components/stepFour/index.js @@ -304,31 +304,27 @@ export class stepFour extends React.Component {
<div className="hidden">
<DisplayField
side='left'
- title={'Wallet address'}
- value={tierStore.tiers[0].walletAddress}
- description="Where the money goes after invest... | 2 |
diff --git a/docs/source/index.blade.php b/docs/source/index.blade.php @extends('_layouts.master')
@section('body')
+<div class="flex flex-col">
<div class="min-h-screen bg-pattern bg-center bg-smoke-light border-t-6 border-tailwind-teal flex items-center justify-center leading-tight p-6 pb-16">
<div>
<div>
</div>
</di... | 1 |
diff --git a/content/intro-to-storybook/ember/en/test.md b/content/intro-to-storybook/ember/en/test.md @@ -51,7 +51,7 @@ $ git commit -m "taskbox UI"
Add the package as a dependency.
```bash
-npm install -D storybook-chromatic
+npm install -D chromatic
```
One fantastic thing about this addon is that it will use Git hi... | 3 |
diff --git a/src/components/general/inventory/Inventory.jsx b/src/components/general/inventory/Inventory.jsx @@ -92,6 +92,7 @@ const InventoryObject = forwardRef(({
<div className={styles.inventoryObject} ref={ref}>
<div className={styles.background} />
+ <div className={styles.highlight} />
<canvas
className={styles.c... | 0 |
diff --git a/src/components/profile/Profile.js b/src/components/profile/Profile.js @@ -155,10 +155,23 @@ export function Profile({ match }) {
Mixpanel.people.set({
relogin_date: new Date().toString(),
enabled_2FA: account.has2fa,
- [account.accountId]: formatNEAR(account.balance.total) })
- Mixpanel.alias(account.accou... | 3 |
diff --git a/src/core/utils/bin-sorter.js b/src/core/utils/bin-sorter.js @@ -80,7 +80,7 @@ export default class BinSorter {
*/
getMaxCount() {
let maxCount = 0;
- this.sortedBins.forEach(x => (maxCount = maxCount > x ? maxCount : x));
+ this.sortedBins.forEach(x => (maxCount = maxCount > x.counts ? maxCount : x.counts)... | 1 |
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -15,6 +15,7 @@ We use the following [labels](https://github.com/plotly/plotly.js/labels) to tra
| Label | Purpose |
|--------|---------|
| `type: bug` | bug report confirmed by a plotly team member |
+| `type: regression` | bug that introduced a change in behavior from ... | 0 |
diff --git a/src/sdk/base/stream.js b/src/sdk/base/stream.js {
resolution:[object(Resolution)] | undefined,
framerate: [number(FramerateFPS)] | undefined,
- bitrateMultiple: [number(BitrateMultiple)] |undefined,
+ bitrateMultiplier: [number(bitrateMultiplier)] |undefined,
keyFrameInterval: [number(KeyFrameIntervalSecon... | 1 |
diff --git a/website/ops.js b/website/ops.js @@ -1150,7 +1150,8 @@ module.exports={
verifyLoginAndDictAccess: function(email, sessionkey, dictDB, dictID, callnext){
var yesterday=(new Date()); yesterday.setHours(yesterday.getHours()-24); yesterday=yesterday.toISOString();
var db=new sqlite3.Database(path.join(module.ex... | 1 |
diff --git a/.travis.yml b/.travis.yml @@ -36,3 +36,13 @@ deploy:
skip_cleanup: true
email: $NPM_EMAIL
api_key: $NPM_TOKEN
+- provider: s3
+ on:
+ branch: master
+ access_key_id: $AWS_ACCESS_KEY_ID
+ secret_access_key: $AWS_SECRET_ACCESS_KEY
+ bucket: $AWS_BUCKET_NAME
+ acl: public_read
+ detect_encoding: true
+ skip_c... | 12 |
diff --git a/accessibility-checker/src-ts/lib/ACEngineManager.ts b/accessibility-checker/src-ts/lib/ACEngineManager.ts @@ -124,8 +124,8 @@ try {
fs.writeFile(path.join(engineDir, "ace-node.js"), data, function (err) {
try {
err && console.log(err);
- ace = require("./engine/ace-node");
- checker = new ace.Checker();
+ ... | 3 |
diff --git a/components/base-adresse-nationale/numero/coordinates-copy.js b/components/base-adresse-nationale/numero/coordinates-copy.js @@ -61,6 +61,7 @@ function CoordinatesCopy({coordinates, setCopyError, setIsCopySucceded, setIsCop
onClick={handleClick}
>
Copier la position GPS
+ <Clipboard style={{marginLeft: '1em... | 0 |
diff --git a/package.json b/package.json "build": "webpack --config webpack.umd.js --progress",
"pretest": "webpack --config webpack.umd.js",
"test": "karma start",
- "coveralls": "coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
| 2 |
diff --git a/src/lib/bmp-converter.js b/src/lib/bmp-converter.js @@ -11,6 +11,8 @@ export default bmpImage => new Promise(resolve => {
const image = document.createElement('img');
image.addEventListener('load', () => {
+ canvas.width = image.naturalWidth;
+ canvas.height = image.naturalHeight;
ctx.drawImage(image, 0, 0... | 12 |
diff --git a/packages/openneuro-components/src/header/Header.tsx b/packages/openneuro-components/src/header/Header.tsx @@ -36,6 +36,7 @@ export const Header = ({
renderUploader,
}: HeaderProps) => {
const [isOpen, setOpen] = React.useState(false)
+
return (
<>
<header>
@@ -73,6 +74,7 @@ export const Header = ({
onClick... | 12 |
diff --git a/detox/test/ios/example.xcodeproj/xcshareddata/xcschemes/example Release Xcode.xcscheme b/detox/test/ios/example.xcodeproj/xcshareddata/xcschemes/example Release Xcode.xcscheme isEnabled = "YES">
</CommandLineArgument>
</CommandLineArguments>
- <EnvironmentVariables>
- <EnvironmentVariable
- key = "__LLEO__... | 2 |
diff --git a/src/lib/coerce.js b/src/lib/coerce.js @@ -408,19 +408,19 @@ exports.coerce = function(containerIn, containerOut, attributes, attribute, dflt
* returns false if there is no user input.
*/
exports.coerce2 = function(containerIn, containerOut, attributes, attribute, dflt) {
- var propOut = exports.coerce(cont... | 10 |
diff --git a/src/time.jsx b/src/time.jsx @@ -43,6 +43,10 @@ export default class Time extends React.Component {
);
};
+ state = {
+ height: null
+ }
+
componentDidMount() {
// code to ensure selected time will always be in focus within time window when it first appears
this.list.scrollTop = Time.calcCenterPosition(
@@ ... | 1 |
diff --git a/main/menu.js b/main/menu.js @@ -64,11 +64,23 @@ function buildAppMenu (options = {}) {
}
}
+ var preferencesAction = {
+ label: l('appMenuPreferences'),
+ accelerator: 'CmdOrCtrl+,',
+ click: function (item, window) {
+ sendIPCToWindow(window, 'addTab', {
+ url: 'file://' + __dirname + '/pages/settings/ind... | 7 |
diff --git a/gameplay/avalonRoom.js b/gameplay/avalonRoom.js @@ -506,7 +506,7 @@ module.exports = function(host_, roomId_, io_){
};
this.getGameDataForSpectators = function(){
- return false;
+ // return false;
var playerRoles = this.playersInGame;
//set up the spectator data object
| 1 |
diff --git a/factory-ai-vision/EdgeSolution/modules/WebModule/backend_v2/vision_on_edge/cameras/migrations/0005_auto_20200922_0641.py b/factory-ai-vision/EdgeSolution/modules/WebModule/backend_v2/vision_on_edge/cameras/migrations/0005_auto_20200922_0641.py # Generated by Django 3.0.8 on 2020-09-22 06:41
+import json
+i... | 5 |
diff --git a/app/services/stream_copy.js b/app/services/stream_copy.js @@ -34,8 +34,11 @@ module.exports = {
const runningClient = client;
const cancelingClient = new Client(runningClient.connectionParameters);
cancelingClient.cancel(runningClient, pgstream);
+
+ const err = new Error('Connection closed by client');
pg... | 4 |
diff --git a/lib/blog.js b/lib/blog.js const URL = process.env.NEXT_PUBLIC_GHOST_URL
const KEY = process.env.GHOST_KEY
+const LIMIT = 9
+const INCLUDE = 'authors,tags'
+const FULL_URL = `${URL}/ghost/api/v3/content/posts?key=${KEY}&limit=${LIMIT}&include=${INCLUDE}`
const options = {
method: 'GET',
@@ -7,12 +10,32 @@ c... | 0 |
diff --git a/experimental/common-expression-language/prebuilt-functions.md b/experimental/common-expression-language/prebuilt-functions.md @@ -145,6 +145,7 @@ or you can browse the functions based on [alphabetical order](#alphabetical-list
|[getProperty](#getProperty) | Return the value of the given property in a JSON ... | 0 |
diff --git a/src/material-table.js b/src/material-table.js @@ -84,7 +84,7 @@ export default class MaterialTable extends React.Component {
* Warn consumer of deprecated prop.
*/
if (this.props.options.sorting !== undefined) {
- console.error(
+ console.warn(
'Property `sorting` has been deprecated, please start using `m... | 12 |
diff --git a/lib/node_modules/@stdlib/repl/help/datapackage.json b/lib/node_modules/@stdlib/repl/help/datapackage.json {
- "name": "stdlib-help-text",
+ "name": "stdlib-alias-help",
"version": "",
"title": "Standard Library Aliases and Help Texts",
"description": "A mapping between standard library aliases and help tex... | 10 |
diff --git a/CLI/commands/transfer_manager.js b/CLI/commands/transfer_manager.js @@ -663,7 +663,7 @@ async function matmManage() {
if (getApprovals.length > 0) {
let options = []
getApprovals.forEach((item) => {
- options.push(`From ${item.from} to ${item.to}`)
+ options.push(`${web3.utils.toAscii(item.description)}\nF... | 7 |
diff --git a/dashboard/apps/job_manager.fma/js/job_manager.js b/dashboard/apps/job_manager.fma/js/job_manager.js @@ -299,12 +299,15 @@ function addHistoryEntries(jobs) {
var row = table.insertRow(table.rows.length);
var menu = row.insertCell(0);
menu.className += ' actions-control';
- var name = row.insertCell(1);
- va... | 7 |
diff --git a/src/implementations/vanilla/src/basics/form-elements/dropdown/dropdown.scss b/src/implementations/vanilla/src/basics/form-elements/dropdown/dropdown.scss @import '~helpers/css/layers.scss';
.hig__dropdown {
+ min-width: 300px;
+ max-width: 450px;
+
.hig__text-field__input{
font-weight: 600;
}
| 12 |
diff --git a/_src/_templates/states.njk b/_src/_templates/states.njk @@ -116,7 +116,7 @@ layout: base.njk
<div class="state-flex-header">Total test results<div class="total-info">Positive + Negative</div>
</div>
<div class="state-flex-data">
- {% if state.posNeg %}{{ state.posNeg | thousands }}
+ {% if state.positive a... | 1 |
diff --git a/src/userscript.ts b/src/userscript.ts @@ -40018,9 +40018,13 @@ var $$IMU_EXPORT$$;
// https://news.mynavi.jp/article/20180219-586202/index_images/index.jpg/iapp
// https://news.mynavi.jp/article/20180219-586202/index_images/index.jpg
// https://news.mynavi.jp/article/20180219-586202/images/001l.jpg
+ // th... | 7 |
diff --git a/assets/sass/components/setup/_googlesitekit-adsense-connect-cta.scss b/assets/sass/components/setup/_googlesitekit-adsense-connect-cta.scss }
.googlesitekit-setup-module__action {
-
- .mdc-button {
- margin-right: 24px;
- }
+ display: flex;
+ flex-wrap: wrap;
+ gap: 8px 24px;
@media (min-width: $bp-desktop... | 7 |
diff --git a/test/jasmine/tests/svg_text_utils_test.js b/test/jasmine/tests/svg_text_utils_test.js @@ -117,12 +117,12 @@ describe('svg+text utils', function() {
it('whitelists http hrefs', function() {
var node = mockTextSVGElement(
- '<a href="https://bl.ocks.org/">bl.ocks.org</a>'
+ '<a href="http://bl.ocks.org/">bl.... | 0 |
diff --git a/README.md b/README.md @@ -33,7 +33,7 @@ Check this out:
- it has all "MOST WANTED" features built in. That is where the name comes from :wink: We come to the features a little bit later.
- it is customizable
- it uses Firebase :smile:
-- it is Best Practice Project PWA (Progressive Web Application)
+- it i... | 1 |
diff --git a/jobs/upcoming.js b/jobs/upcoming.js @@ -52,14 +52,16 @@ module.exports = async () => {
const wikiRow = wiki.split('\n').filter((v) => v !== '');
- const allWikiDates = wikiRow.filter((_, index) => index % 8 === 0);
- const wikiDates = allWikiDates.slice(0, 30);
+ const allWikiDates = wikiRow.filter((_, ind... | 1 |
diff --git a/js/webcomponents/bisweb_filetreepanel.js b/js/webcomponents/bisweb_filetreepanel.js @@ -53,7 +53,7 @@ class FileTreePanel extends HTMLElement {
let biswebElementMenu = $(`<div class='bisweb-elements-menu'></div>`);
listElement.append(biswebElementMenu);
- this.makeButtons(listElement);
+ this.makeStaticBut... | 5 |
diff --git a/test/jasmine/tests/transform_sort_test.js b/test/jasmine/tests/transform_sort_test.js @@ -134,6 +134,21 @@ describe('Test sort transform calc:', function() {
expect(out[0].y).toEqual([0, 2, 4, 3, 1]);
});
+ it('should sort via categorical targets', function() {
+ var trace = extend({
+ transforms: [{ targe... | 0 |
diff --git a/server/lib/actions.js b/server/lib/actions.js @@ -398,8 +398,8 @@ export default function (server, actions, payload, task) {
* }
*/
- var formatter;
if (_.has(action, 'slack')) {
+ let formatter;
formatter = action.slack.message ? action.slack.message : 'Series Alarm {{ payload._id}}: {{payload.hits.total}... | 7 |
diff --git a/ui/app/components/modals/account-details-modal.js b/ui/app/components/modals/account-details-modal.js @@ -61,7 +61,7 @@ AccountDetailsModal.prototype.render = function () {
let exportPrivateKeyFeatureEnabled = true
// This feature is disabled for hardware wallets
- if (keyring.type.search('Hardware') !== -... | 9 |
diff --git a/node-binance-api.js b/node-binance-api.js @@ -94,7 +94,7 @@ module.exports = function() {
quantity: quantity
};
if ( typeof flags.type !== "undefined" ) opt.type = flags.type;
- if ( opt.type == "LIMIT" ) {
+ if ( opt.type.includes("LIMIT") ) {
opt.price = price;
opt.timeInForce = "GTC";
}
| 12 |
diff --git a/utils/pre-swap-checker/contracts/PreSwapChecker.sol b/utils/pre-swap-checker/contracts/PreSwapChecker.sol @@ -37,7 +37,7 @@ contract PreSwapChecker {
bytes32 domainSeparator = Types.hashDomain(DOM_NAME, DOM_VERSION, swap);
// max size of the number of errors that could exist
- bytes32[] memory errors = new... | 3 |
diff --git a/src/components/AddressTypeahead.js b/src/components/AddressTypeahead.js @@ -89,7 +89,7 @@ class AddressTypeahead extends Component {
region: Settings.get('country')
}}
// filter the reverse geocoding results by types - ['locality', 'administrative_area_level_3'] if you want to display only cities
- filterR... | 11 |
diff --git a/packages/components/providers/baidu/BaiduMapTilingScheme.ts b/packages/components/providers/baidu/BaiduMapTilingScheme.ts @@ -22,12 +22,14 @@ class BaiduMapMercatorTilingScheme {
this._projection.project = function (cartographic, result) {
result = result || {}
- if (options.toWGS84) {
+ if (options.projec... | 1 |
diff --git a/tools/make/lib/benchmark/cpp.mk b/tools/make/lib/benchmark/cpp.mk @@ -11,6 +11,7 @@ benchmark-cpp:
echo "Running benchmark: $$file"; \
cd `dirname $$file` && \
$(MAKE) clean && \
+ CXX_COMPILER="$(CXX)" \
BOOST=$(DEPS_BOOST_BUILD_OUT) $(MAKE) && \
$(MAKE) run || exit 1; \
done
@@ -28,6 +29,7 @@ benchmark-c... | 12 |
diff --git a/.travis.yml b/.travis.yml @@ -20,14 +20,14 @@ matrix:
include:
- os: linux
language: node_js
- node_js: "9"
+ node_js: "10.1.0"
sudo: required
language: generic
- os: osx
osx_image: xcode9.3
language: node_js
- node_js: "9"
+ node_js: "10.1.0"
env:
- CSC_LINK=certs/mac.p12
- secure: "oZ3OGN4i7s4hENVOBB63XA... | 12 |
diff --git a/src/core/Core.js b/src/core/Core.js @@ -144,19 +144,13 @@ class Uppy {
}
addFile (file) {
+ Utils.getFileType(file).then((fileType) => {
const updatedFiles = Object.assign({}, this.state.files)
-
const fileName = file.name || 'noname'
const fileExtension = Utils.getFileNameAndExtension(fileName)[1]
const i... | 5 |
diff --git a/articles/compliance/index.md b/articles/compliance/index.md ---
title: Auth0 and General Data Protection Regulation
description: How Auth0 complies with the EU's General Data Protection Regulation (GDPR)
+classes: topic-page
---
+
<div class="topic-page-header">
<div data-name="example" class="topic-page-b... | 0 |
diff --git a/articles/appliance/infrastructure/security.md b/articles/appliance/infrastructure/security.md @@ -91,8 +91,8 @@ Auth0 requires [remote access](/appliance/remote-access-options) to your PSaaS A
### Initial Configuration
-Auth0's remote access method for initial configuration requires SSH access via Jumphost... | 2 |
diff --git a/tests/phpunit/integration/Core/Permissions/PermissionsTest.php b/tests/phpunit/integration/Core/Permissions/PermissionsTest.php @@ -236,11 +236,9 @@ class PermissionsTest extends TestCase {
$this->assertFalse( user_can( $contributor, Permissions::VIEW_SHARED_DASHBOARD ) );
$dismissed_items = new Dismissed_... | 2 |
diff --git a/userscript.user.js b/userscript.user.js @@ -53936,7 +53936,7 @@ var $$IMU_EXPORT$$;
do_update_setting(setting, value, meta);
}
- settings[setting] = new_value;
+ //settings[setting] = new_value;
check_disabled_options();
show_warnings();
});
@@ -53995,7 +53995,7 @@ var $$IMU_EXPORT$$;
savebutton.innerText ... | 7 |
diff --git a/test/jasmine/tests/splom_test.js b/test/jasmine/tests/splom_test.js @@ -1825,7 +1825,7 @@ describe('Test splom select:', function() {
.then(done, done.fail);
});
- it('should be able to select and then clear using API', function(done) {
+ it('@gl should be able to select and then clear using API', function... | 0 |
diff --git a/src/components/SidePane.jsx b/src/components/SidePane.jsx @@ -108,6 +108,7 @@ function File({
function dragOverHandler(e) {
if (file.isFolder) {
e.preventDefault();
+ // e.stopPropagation();
e.currentTarget.classList.add('is-being-dragged-over');
e.currentTarget.style.outline = '1px dashed';
}
@@ -119,6 +1... | 11 |
diff --git a/src/post/Write/PostEditor.js b/src/post/Write/PostEditor.js @@ -177,7 +177,15 @@ class PostEditor extends Component {
}
setRawContent(content) {
- this.setState({ editorState: EditorState.createWithContent(convertFromRaw(content)) });
+ // setTimeout is required as getDecorator are not immediately.
+ setTi... | 1 |
diff --git a/packages/driver/src/cy/commands/actions/scroll.coffee b/packages/driver/src/cy/commands/actions/scroll.coffee @@ -221,7 +221,9 @@ module.exports = (Commands, Cypress, cy, state, config) ->
$utils.throwErrByPath("scrollTo.invalid_target", {args: { x, y }})
if options.log
- deltaOptions = $utils.filterOutOpt... | 0 |
diff --git a/packages/bootstrap-chat/src/FormResponse.jsx b/packages/bootstrap-chat/src/FormResponse.jsx @@ -115,14 +115,6 @@ class FormResponse extends React.Component {
{question}
</Col>
<Col sm={5}>
- onKeyPress={(e) => {
- console.log("Pressed");
- if (e.key === "Enter") {
- tryMessageSend();
- e.stopPropagation();... | 5 |
diff --git a/__tests__/__helpers__/FixtureFS.js b/__tests__/__helpers__/FixtureFS.js @@ -2,6 +2,7 @@ const path = require('path')
const _fs = require('fs')
const pify = require('pify')
const setTestTimeout = require('./set-test-timeout')
+setTestTimeout(60000)
const FixtureFS = async function () {
// This is all in a c... | 12 |
diff --git a/src/modules/app/services/waves/node/content/Transactions.js b/src/modules/app/services/waves/node/content/Transactions.js return fetch(`${this.network.node}/transactions/unconfirmed`)
.then((list) => list.filter((item) => item.recipient === address || item.sender === address))
- .then(Waves.tools.siftTrans... | 1 |
diff --git a/includes/Modules/Analytics.php b/includes/Modules/Analytics.php @@ -1264,7 +1264,7 @@ final class Analytics extends Module
/**
* Determines whether the given metric expression is for an AdSense metric.
*
- * @since n.e.x.t
+ * @since 1.8.0
*
* @param string $metric Metric expression.
* @return bool True if... | 14 |
diff --git a/src/server/service/page.js b/src/server/service/page.js @@ -297,23 +297,35 @@ class PageService {
.pipe(writeStream);
}
- async revertDeletedDescendants(pages, user, options = {}) {
+ async revertDeletedPages(pages, user, options = {}) {
const Page = this.crowi.model('Page');
const pageCollection = mongoos... | 13 |
diff --git a/source/tab/launch.js b/source/tab/launch.js @@ -12,7 +12,13 @@ export function attachLaunchButton(input) {
if (input.dataset.bcup === "attached" || itemIsIgnored(input)) {
return;
}
- const { borderTopLeftRadius, borderBottomLeftRadius } = window.getComputedStyle(input, null);
+ const {
+ borderTopLeftRadi... | 7 |
diff --git a/constants.js b/constants.js @@ -38,6 +38,7 @@ export const localstorageHost = 'https://localstorage.webaverse.com';
export const loginEndpoint = 'https://login.exokit.org';
export const tokensHost = `https://${chainName}all-tokens.webaverse.com`;
export const landHost = `https://${chainName}sidechain-land.... | 0 |
diff --git a/src/commands/Rooms/Create.js b/src/commands/Rooms/Create.js @@ -60,7 +60,7 @@ class Create extends Command {
*/
run(message) {
const type = message.strippedContent.match(this.regex)[1];
- const optName = message.strippedContent.match(this.regex)[2].trim().replace(/[^\w|-]/ig, '');
+ const optName = message... | 2 |
diff --git a/server/game/cards/08-MotC/WinterCourtHosts.js b/server/game/cards/08-MotC/WinterCourtHosts.js @@ -4,7 +4,7 @@ const AbilityDsl = require('../../abilitydsl.js');
class WinterCourtHosts extends DrawCard {
setupCardAbilities() {
this.reaction({
- title: 'Draw a card.',
+ title: 'Draw a card',
limit: AbilityDs... | 2 |
diff --git a/assets/js/feature-tours/index.js b/assets/js/feature-tours/index.js @@ -40,7 +40,7 @@ const allTrafficWidget = {
slug: 'allTrafficWidget',
contexts: [ VIEW_CONTEXT_DASHBOARD, VIEW_CONTEXT_DASHBOARD_VIEW_ONLY ],
version: '1.25.0',
- gaEventCategory: `${ VIEW_CONTEXT_DASHBOARD }_all-traffic-widget`,
+ gaEven... | 2 |
diff --git a/lib/modules/deployment/contract_deployer.js b/lib/modules/deployment/contract_deployer.js @@ -44,7 +44,13 @@ class ContractDeployer {
}
let contractName = arg.substr(1);
self.events.request('contracts:contract', contractName, (referedContract) => {
- cb(null, referedContract.deployedAddress);
+ if(referedC... | 9 |
diff --git a/app-template/bitcoincom/appConfig.json b/app-template/bitcoincom/appConfig.json "windowsAppId": "804636ee-b017-4cad-8719-e58ac97ffa5c",
"pushSenderId": "1036948132229",
"description": "A Secure Bitcoin Wallet",
- "version": "5.2.0",
- "fullVersion": "5.2-rc1",
+ "version": "5.2.1",
+ "fullVersion": "5.2-ho... | 3 |
diff --git a/contracts/EtherNomin.sol b/contracts/EtherNomin.sol @@ -123,21 +123,21 @@ contract EtherNomin is ExternStateProxyFeeToken {
function EtherNomin(address _havven, address _oracle,
address _beneficiary,
- uint initialEtherPrice,
- address _owner, TokenState initialState)
+ uint _initialEtherPrice,
+ address _... | 10 |
diff --git a/src/components/fields/derived.js b/src/components/fields/derived.js @@ -305,7 +305,7 @@ export const NumericReciprocal = connectToContainer(UnconnectedNumeric, {
const {fullValue, updatePlot} = plotProps;
if (isNumeric(fullValue)) {
- plotProps.fullValue = Math.round(1 / fullValue);
+ plotProps.fullValue =... | 11 |
diff --git a/CHANGELOG.md b/CHANGELOG.md ## 7.8.3 (unreleased)
-### Breaking
-
-### Feature
-
### Bugfix
- Change ImageGallery image scale from preview to large. @tisto
- Also use `settings.internalApiPath` in url helpers `isInternalURL`, `flattenToAppUrl` and `flattenHTMLToAppURL` @tiberiuichim
-- Fix getBlocks helper... | 6 |
diff --git a/package.json b/package.json "compile": "lerna run compile",
"hint": "yarn solhint \"./contracts/**/*.sol\"",
"lint": "yarn eslint \"./**/test/**/*.js\" \"./packages/**/*.js\"",
- "ganache": "ganache-cli -p 8545 --gasLimit 0xfffffffffff",
+ "ganache": "ganache-cli -d -p 8545 --gasLimit 0xfffffffffff --time ... | 12 |
diff --git a/src/components/FindWallet/WalletTable.tsx b/src/components/FindWallet/WalletTable.tsx @@ -700,10 +700,16 @@ const WalletTable = ({ data, filters, walletData }) => {
<Container>
<WalletContentHeader>
<th>
+ {filteredWallets.length === walletCardData.length ? (
<p>
- <strong>Showing {filteredWallets.length} ... | 7 |
diff --git a/src/client/js/components/PageEditor/CodeMirrorEditor.js b/src/client/js/components/PageEditor/CodeMirrorEditor.js @@ -548,36 +548,71 @@ export default class CodeMirrorEditor extends AbstractEditor {
);
}
+ /**
+ * return a function to replace a selected range with prefix + selection + suffix
+ *
+ * The cu... | 12 |
diff --git a/src/web/widgets/Axes/MDIPanel.jsx b/src/web/widgets/Axes/MDIPanel.jsx @@ -33,8 +33,8 @@ class MDIPanel extends PureComponent {
disabled={!canClick}
content={(
<div className="text-left">
- {c.command.split('\n').map(line => (
- <div>{line}</div>
+ {c.command.split('\n').map((line, index) => (
+ <div key={`... | 1 |
diff --git a/docs/README.md b/docs/README.md @@ -16,7 +16,7 @@ Check out the list of [Integrations and Usages of Mermaid](./integrations.md)
**Mermaid was nominated and won the JS Open Source Awards (2019) in the category "The most exciting use of technology"!!! Thanks to all involved, people committing pull requests, ... | 1 |
diff --git a/src/embedding-utils.js b/src/embedding-utils.js @@ -2,11 +2,15 @@ import ReporterPluginHost from './reporter/plugin-host';
import TestRunErrorFormattableAdapter from './errors/test-run/formattable-adapter';
import * as testRunErrors from './errors/test-run';
import TestRun from './test-run';
+import COMMAN... | 0 |
diff --git a/view/adminhtml/web/vue/app.vue b/view/adminhtml/web/vue/app.vue @@ -82,6 +82,7 @@ define(["Vue"], function(Vue) {
'type': 'category',
'title': this.config.translation.addNode,
"id": new Date().getTime(),
+ "content": null,
"columns": []
});
}
| 1 |
diff --git a/commands/rsstest.js b/commands/rsstest.js @@ -18,7 +18,7 @@ module.exports = async (bot, message, command) => {
const { rssName } = data
const source = guildRss.sources[rssName]
const grabMsg = await message.channel.send(`Grabbing a random feed article...`)
- const article = FeedFetcher.fetchRandomArticle(... | 1 |
diff --git a/assets/js/components/button.js b/assets/js/components/button.js @@ -56,6 +56,7 @@ class Button extends Component {
ariaHaspopup,
ariaExpanded,
ariaControls,
+ ...extraProps
} = this.props;
// Use a button if disabled, even if a href is provided to ensure expected behavior.
@@ -81,6 +82,7 @@ class Button ex... | 11 |
diff --git a/src/prerenderContent/prerenderObj.js b/src/prerenderContent/prerenderObj.js import * as React from "react";
import * as ReactDOMServer from "react-dom/server";
import * as Scrivito from "scrivito";
-import Helmet from "react-helmet";
+import { HelmetProvider } from "react-helmet-async";
+
import App, { hel... | 14 |
diff --git a/weapons-manager.js b/weapons-manager.js @@ -1226,7 +1226,7 @@ const itemSpecs3 = [
"name": "dragon-fly",
"start_url": "https://avaer.github.io/dragon-fly/manifest.json"
},
- /* {
+ {
"name": "pistol",
"start_url": "https://avaer.github.io/pistol/manifest.json"
},
@@ -1237,7 +1237,15 @@ const itemSpecs3 = [... | 0 |
diff --git a/osdCamicroscope_Lymph.php b/osdCamicroscope_Lymph.php @@ -57,6 +57,7 @@ include 'shared/osdHeader.php';
$string = file_get_contents("customized/lymph/markup_types.json");
$json_data = json_decode($string, true);
$a = 'NA';
+ $selected_idx = 1;
foreach ($json_data as $key1 => $value1) {
$load_caption = $jso... | 12 |
diff --git a/src/constants/parade-coordinates.js b/src/constants/parade-coordinates.js @@ -20,7 +20,7 @@ export const terminals = [
},
{
key: "finish",
- coordinates: { longitude: -0.1265, latitude: 51.50499 },
+ coordinates: { longitude: -0.12664, latitude: 51.50497 },
text: { text: "B", type: "xSmall", color: "whiteC... | 2 |
diff --git a/articles/overview/apis.md b/articles/overview/apis.md @@ -13,7 +13,7 @@ crews: crew-2
An API is an entity that represents an external resource, capable of accepting and responding to protected resource requests made by clients. At the [OAuth2 spec](https://tools.ietf.org/html/rfc6749) an API maps to the **... | 0 |
diff --git a/assets/js/modules/analytics-4/utils/banner-dismissal-expiry.js b/assets/js/modules/analytics-4/utils/banner-dismissal-expiry.js * Internal dependencies
*/
import { getTimeInSeconds } from '../../../util/index';
+import { stringToDate } from '../../../util/date-range/string-to-date';
/**
* Gets the time in ... | 14 |
diff --git a/src/components/common/buttons/CustomButton.js b/src/components/common/buttons/CustomButton.js // @flow
import React from 'react'
-import { StyleSheet, View } from 'react-native'
-import { Button as BaseButton, DefaultTheme, Text, withTheme } from 'react-native-paper'
-import normalize from 'react-native-el... | 3 |
diff --git a/src/js/Nostr.ts b/src/js/Nostr.ts @@ -381,7 +381,9 @@ export default {
},
publish: async function (event: any) {
if (!event.sig) {
- event.tags = event.tags || [];
+ if (!event.tags) {
+ event.tags = [];
+ }
event.content = event.content || '';
event.created_at = event.created_at || Math.floor(Date.now() /... | 9 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,16 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.42.3] -- 2018-11-06
+
+### Fixed
+- Fix `histogram` binning for typed array inputs (bug introduced in 1.42.0) [#3211]
+- Fix textfont... | 3 |
diff --git a/tests/e2e/config/bootstrap.js b/tests/e2e/config/bootstrap.js @@ -42,6 +42,7 @@ const OBSERVED_CONSOLE_MESSAGE_TYPES = {
warning: 'warn',
error: 'error',
log: 'log',
+ info: 'log',
};
/**
@@ -129,7 +130,9 @@ function observeConsoleLogging() {
// See: https://core.trac.wordpress.org/ticket/47183
if (
text.s... | 8 |
diff --git a/articles/api/management/v2/tokens-flows.md b/articles/api/management/v2/tokens-flows.md @@ -52,7 +52,9 @@ Furthermore, you can generate a token using [JWT.io](https://jwt.io/):
- Use the [JWT.io Debugger](https://jwt.io/#debugger-io) to manually type the claims and generate a token.
- Use one of the [JWT.i... | 14 |
diff --git a/src/components/Mosaic.js b/src/components/Mosaic.js @@ -4,8 +4,8 @@ import { mx } from '../theme'
import { range, shuffle } from 'lodash'
const Base = Box.extend`
- display: grid;
- grid-template-columns: repeat(4, 1fr);
+ display: flex;
+ flex-flow: row wrap;
justify-content: center;
align-items: center;
... | 14 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.